# Sivut SEC Crypto Filing Radar

> Sivut SEC Crypto Filing Radar is a paid API for AI agents from pay.sivut.co, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns the latest SEC EDGAR filings mentioning crypto, with signals, snippets, source URLs, hashes, and provenance — paid via x402 micropayment.

## Facts

- Endpoint: GET https://pay.sivut.co/api/public-data/sec-crypto-filings/latest
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sivut-sec-crypto-filing-radar-a227b146
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eGOLFuR8gFRH_XZjCRUQl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sivut-sec-crypto-filing-radar-a227b146
```

Example prompt: Pull the latest 20 SEC EDGAR filings that mention crypto — I want the company names, form types, filing dates, any extracted signals, and snippets so I can see what public companies are disclosing about digital assets right now.

## When to prefer this

Use this endpoint when you need a real-time, provenance-anchored feed of SEC EDGAR filings filtered for crypto relevance, complete with extracted signals and source hashes. Prefer this over raw EDGAR full-text search when you want pre-processed crypto signals, snippets, and hash-based verification without building your own EDGAR scraper. Ideal for compliance monitoring, investment research, or trend tracking involving public-company crypto disclosures.

## Known failure modes

- Payment not made or x402 payment rejected — returns 402 Payment Required
- limit parameter out of range (must be 1–50) — returns 400 Bad Request
- SEC EDGAR upstream unavailable — may return stale or empty filings array
- No recent crypto filings found — returns count:0 with empty filings array

## How this service works

Machine-payable x402 endpoints for public SEC crypto filing radar data, page markdown, and public x402 seller intelligence paid in USDC on Base or Solana.

## Output

A JSON object containing a list of up to 50 recent SEC EDGAR filings flagged for crypto relevance, each with company name, CIK, ticker(s), form type, filing date, accession number, a URL to the primary document, an array of crypto-related signals extracted from the filing, a text snippet, a source hash for provenance verification, and metadata including the checked timestamp, active keyword filters, and payment details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 50,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "checkedAt",
      "product",
      "filters",
      "sources",
      "caveats",
      "count",
      "filings"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "paidBy": {
       "type": "string"
      },
      "caveats": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "filings": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "company",
         "cik",
         "form",
         "filing_date",
         "accession",
         "primary_doc_url",
         "signals",
         "snippet",
         "source_hash"
        ],
        "properties": {
         "cik": {
          "type": "string"
         },
         "form": {
          "type": "string"
         },
         "ticker": {
          "type": "string"
         },
         "company": {
          "type": "string"
         },
         "signals": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "snippet": {
          "type": "string"
         },
         "tickers": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "ownerOrg": {
          "type": [
           "string",
           "null"
          ]
         },
         "accession": {
          "type": "string"
         },
         "filing_date": {
          "type": "string"
         },
         "observed_at": {
          "type": "string"
         },
         "source_hash": {
          "type": "string"
         },
         "primary_doc_url": {
          "type": [
           "string",
 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "paidBy": "x402",
  "caveats": [
   "Derived from public SEC EDGAR filings; paid product is filtering, normalization, monitoring, snippets, and provenance.",
   "Not affiliated with SEC. Not investment advice."
  ],
  "filings": [
   {
    "cik": "0001050446",
    "form": "8-K",
    "ticker": "MSTR",
    "company": "Strategy Inc",
    "signals": [
     "crypto",
     "bitcoin"
    ],
    "snippet": "Strategy Inc filed 8-K. Signals: crypto, bitcoin.",
    "ownerOrg": "09 Crypto Assets",
    "accession": "0001193125-26-261038",
    "filing_date": "2026-06-08",
    "observed_at": "2026-06-09T00:00:00.000Z",
    "source_hash": "sha256:example",
    "primary_doc_url": "https://www.sec.gov/Archives/edgar/data/1050446/000119312526261038/d130937d8k.htm"
   }
  ],
  "filters": {
   "limit": 10,
   "keywords": [
    "bitcoin",
    "crypto",
    "digital asset"
   ],
   "excludedForms": [
    "3",
    "4",
    "5"
   ]
  },
  "payment": {
   "asset": "USDC",
   "payTo": "0x9d39802b6B65D360bFdA92c8221dB3EbA8cbF9D7",
   "network": "eip155:8453"
  },
  "product": "public-sec-crypto-filing-radar",
  "sources": [
   {
    "url": "https://data.sec.gov/submissions/CIK##########.json",
    "name": "SEC submissions API"
   }
  ],
  "checkedAt": "2026-06-09T00:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sivut-sec-crypto-filing-radar-a227b146/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.sivut.co](https://www.zero.xyz/host/pay.sivut.co/llms.txt)
