# AnswerPool SEC Filing History

> AnswerPool SEC Filing History is a paid API for AI agents from answerpool.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves a complete filing history for any SEC filer from a 4M-row historical index, with accession numbers, form types, filing dates, and document URLs, filterable by form and date.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/filings/history
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-sec-filing-history-495d8f6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PKAE113WnkGekb-9iWpV8

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 answerpool-sec-filing-history-495d8f6a
```

Example prompt: Pull the complete SEC filing history for Apple (CIK 0000320193) from AnswerPool's historical index — filter it down to 10-K and 10-Q forms so I can see their annual and quarterly reports going back as far as the index covers.

## When to prefer this

Choose this endpoint when you need a filer's deep historical filing record beyond what EDGAR's recent feed covers, or when paginating EDGAR directly is too slow. Ideal for due diligence workflows, compliance audits, and multi-year disclosure analysis where you need accession numbers, form types, and direct document URLs in one structured response. Prefer it over the 'recent' shard when you need coverage beyond the last few filings.

## Known failure modes

- Invalid or unknown CIK returns empty results or 404
- Form type filter typo returns no results silently
- Date range outside index coverage window returns empty filings array
- Rate limiting or payment failure returns 402 or 429 error
- Index lag means very recent filings (past few days) may not appear

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

A JSON object containing the filer's CIK, an as-of timestamp, total filing count, index coverage window (index_from and index_to dates), and an array of individual filing records each with accession number, form type, filed date, company name, and direct SEC Archives URL.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "as_of": "2026-08-31T16:30:00Z",
  "count": 1,
  "filings": [
   {
    "url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm",
    "form": "8-K",
    "filed": "2026-08-29",
    "company": "APPLE INC",
    "accession": "0001437749-26-028920"
   }
  ],
  "index_to": "2026-08-28",
  "index_from": "2021-07-01"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-filing-history-495d8f6a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
