# AnswerPool Latest EDGAR Filings

> AnswerPool Latest EDGAR Filings 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).

Returns the newest SEC EDGAR filings market-wide for any specified form type, with accession number, filer, timestamp, and SEC URL — normalized from the live SEC feed.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/filings/latest
- 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-latest-edgar-filings-8991f6f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_86qbVhO-s48PFlT3ZkMg0

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-latest-edgar-filings-8991f6f7
```

Example prompt: Pull the latest Form D filings from the SEC market-wide and give me the company name, accession number, and filing timestamp for each — I want this normalized, not raw Atom feed XML.

## When to prefer this

Use this endpoint when you need normalized, structured, real-time EDGAR filing data without building your own Atom feed parser. Prefer it over polling the SEC's getcurrent feed directly when you want clean JSON with company names, accession numbers, and timestamps in one call. It is the right choice for agents monitoring capital markets events, tracking regulatory filings, or building IPO/distress screens that need fresh data on demand.

## Known failure modes

- Invalid or unsupported form type parameter returns empty results or error
- SEC EDGAR feed temporarily unavailable causes upstream data gap
- Rate limiting if the endpoint is polled too aggressively
- Stale data if SEC feed lags — as_of timestamp will reflect actual data freshness
- Missing company metadata for very newly registered filers

## 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 an as_of timestamp, total count, and an array of filing objects each with: CIK, company name, form type, filed datetime, accession number, SEC filing index URL, and any item codes. Data is normalized from the SEC's live EDGAR feed.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 1,
  "filings": [
   {
    "cik": "0002150620",
    "url": "https://www.sec.gov/Archives/edgar/data/2150620/000215062026000001-index.htm",
    "form": "D",
    "filed": "2026-08-28T17:30:10",
    "items": [],
    "company": "Upfront Secondary II-C, L.P.",
    "accession": "0002150620-26-000001"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-latest-edgar-filings-8991f6f7/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)
