# SEC EDGAR Filing Search

> SEC EDGAR Filing Search is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Full-text search of SEC filings (10-K, 10-Q, 8-K, and more) by company name, ticker, CIK, or keyword, returning form type, date, and document links

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/sec-edgar
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-filing-search-262121d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J9l_Xtl-kNuhJJkKwKQ5H

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-search-262121d1
```

Example prompt: Can you search SEC EDGAR for all 10-K annual report filings from Tesla — show me up to 10 results from 2022-01-01 to 2024-01-01 with document links?

## When to prefer this

Use this endpoint when you need to search or retrieve SEC regulatory filings from EDGAR by company name, ticker, CIK, keyword, or form type. Ideal for investment research, compliance monitoring, or any workflow requiring access to official public company disclosures. Prefer this over general web search when you need structured filing metadata and direct document links from the authoritative SEC database.

## Known failure modes

- No filings found for the given query or CIK — returns empty results
- Invalid dateRange format (must be YYYY-MM-DD..YYYY-MM-DD) — returns 400 error
- Unknown CIK or company name with no EDGAR match — returns empty results
- Invalid form type string — query may return no results or all types
- Rate limit or payment failure — returns 402 or 429 error

## How this service works

SEC filings full-text search. Searches SEC EDGAR filings - 10-K, 10-Q, 8-K, and every other form type - by keyword, company name, ticker, or CIK, with date-range filtering, returning company, form type, filing date, accession number, and a direct document link. For SEC filings research and disclosure monitoring. Keyless.

## Output

Returns a list of matching SEC filing records including company name, CIK, form type (e.g. 10-K, 10-Q, 8-K), filing date, and a direct link to the document on EDGAR, up to the specified maxItems limit.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "anyOf": [
      {
       "required": [
        "q"
       ]
      },
      {
       "required": [
        "company"
       ]
      },
      {
       "required": [
        "cik"
       ]
      }
     ],
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "full-text query"
      },
      "cik": {
       "type": "string",
       "description": "SEC CIK"
      },
      "type": {
       "type": "string",
       "description": "form type, e.g. 10-K|10-Q|8-K"
      },
      "company": {
       "type": "string",
       "description": "entity name"
      },
      "maxItems": {
       "type": "string",
       "default": "20"
      },
      "dateRange": {
       "type": "string",
       "description": "YYYY-MM-DD..YYYY-MM-DD"
      }
     }
    }
   },
   "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-search-262121d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
