# AnswerPool SEC Filings List

> AnswerPool SEC Filings List 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).

Lists a filer's recent SEC filings with accession numbers, form types, filed/report dates, 8-K items, and index URLs, filterable by form type.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/filings
- 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-filings-list-443285f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-KaXOSJ3YHv1zQDQHJzDV

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-filings-list-443285f3
```

Example prompt: Pull up the most recent SEC filings for Apple — CIK 0000320193 — and filter it down to just 8-K forms so I can see their latest material event disclosures with accession numbers and index links.

## When to prefer this

Use this endpoint when you need a clean, structured list of a filer's recent SEC filings without manually downloading and parsing the EDGAR submissions JSON or assembling archive URLs. Prefer it over raw EDGAR APIs when you need 8-K item codes, direct index URLs, and form-type filtering in a single call. Ideal for agents that need to programmatically track disclosure activity for specific companies.

## Known failure modes

- Invalid or unknown CIK returns empty results or 404
- Unsupported form type filter returns empty filings array
- Rate limiting or payment failure returns 402 or 429 error
- CIK without recent filings returns count of 0 with empty array
- Malformed CIK format may cause validation error

## 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

Returns a JSON object containing the filer's CIK, an as-of timestamp, a count of filings, and an array of filing objects each with: accession number, form type, filed date, report date, 8-K item codes (where applicable), filing description, and a direct EDGAR index URL for the filing.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "as_of": "2026-08-31T14:00:00Z",
  "count": 1,
  "filings": [
   {
    "url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm",
    "form": "8-K",
    "filed": "2026-08-29",
    "items": [
     "1.03"
    ],
    "accession": "0001437749-26-028920",
    "description": "FORM 8-K",
    "report_date": "2026-08-28"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-filings-list-443285f3/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)
