AnswerPool

Filings Search API: Search EDGAR filings by form type and date range — SEC EDGAR

Search EDGAR filings by form type and date range — returns filer, date, 8-K items and URL per filing, market-wide. Use for "all filings of form X in window Y" without touching EFTS pagination.

Free — no key, no signup, rate-limited to 60 calls per minute per client.

How do you call it?

GET /v1/sec/search/filings — product id sec_filings_search. Over MCP, call answerpool_get with product_id=sec_filings_search.

curl "https://answerpool.io/v1/sec/search/filings?form=8-K&start=2026-08-29&end=2026-08-31"

Live call: https://answerpool.io/v1/sec/search/filings?form=8-K&start=2026-08-29&end=2026-08-31 · JSON sample: /v1/samples/sec_filings_search

What does the answer look like?

A representative response, the same static sample served at /v1/samples/sec_filings_search.

as_of2026-08-31T14:00:00Z
count1
refresh_after2026-09-17T11:15:00.000Z

filings

accessioncikcompanyformfileditemsurl
0001437749-26-0289200000320193APPLE INC8-K2026-08-291.03https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm
The same sample as raw JSON
{
 "as_of": "2026-08-31T14:00:00Z",
 "count": 1,
 "filings": [
  {
   "accession": "0001437749-26-028920",
   "cik": "0000320193",
   "company": "APPLE INC",
   "form": "8-K",
   "filed": "2026-08-29",
   "items": [
    "1.03"
   ],
   "url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm"
  }
 ],
 "refresh_after": "2026-09-17T11:15:00.000Z"
}

How fresh is it, and where does the data come from?

The fastest source behind this answer can change every 15 minutes, so every response carries a refresh_after timestamp — right now it would be 2026-09-17T11:15:00.000Z. Schedule the next call on that value rather than on a guess.

Method version 0.1.0 · serving cache 1 day · every response carries a result_id you can resolve at /v1/provenance.

When should you use it?

Market-wide metadata questions by form and date.

What you skip building

When should you not use it?

Text content questions — use full-text search.

Where else can you find this?