# SEC EDGAR Filing History by CIK

> SEC EDGAR Filing History by CIK is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the complete SEC EDGAR filing history for a single company by CIK, including entity metadata and every filing (form type, date, accession number).

## Facts

- Endpoint: POST https://vaaya.ai/api/run/edgar/filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-filing-history-by-cik-ddfa0a48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GyKTVITshRjHLl7RlyS4k

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 sec-edgar-filing-history-by-cik-ddfa0a48 -d '<json body>'
```

Example prompt: Pull the full SEC filing history for Tesla from EDGAR — their CIK is 1318605 — and show me all their Form 4 insider trades and any 8-K filings from the last year.

## When to prefer this

Use this endpoint when you need the full sweep of a company's SEC filing history and already know the CIK. Ideal for programmatically discovering all Form Ds (fundraises), Form 4s (insider trades), 8-Ks (material events), or S-1s (IPO registrations) for a given registrant. Pair with the EDGAR entity search endpoint first if you only have a company name and need to resolve the CIK, then use this endpoint to enumerate all filings before fetching individual documents.

## Known failure modes

- Invalid or unknown CIK returns an error or empty result
- CIK must be numeric and correctly formatted
- Company with no EDGAR filings returns empty filing list
- Rate limiting or x402 payment failure if USDC balance is insufficient
- data.sec.gov upstream outage causes timeout or 5xx error

## How this service works

SEC EDGAR filing history for one company by CIK (data.sec.gov submissions). Returns entity metadata + every filing (form type, date, accession number) — the sweep source for a company's Form Ds (fundraises), Form 4s (insider trades), 8-Ks, S-1s. Find the CIK via edgar/fulltext hits or the company's EDGAR page.

## Output

Returns a structured object containing entity metadata (company name, SIC code, state of incorporation, etc.) plus a comprehensive list of every filing the company has made with the SEC, each with form type, filing date, and accession number. This enables downstream retrieval of specific filing documents.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "cik"
     ],
     "properties": {
      "cik": {
       "anyOf": [
        {
         "type": "string",
         "pattern": "^\\d{1,10}$"
        },
        {
         "type": "integer",
         "exclusiveMinimum": 0
        }
       ]
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-filing-history-by-cik-ddfa0a48/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
