Latest Filings API: List the newest EDGAR filings market-wide for any form type — SEC EDGAR
List the newest EDGAR filings market-wide for any form type — accession, filer, time and URL from the SEC live feed, normalized. Use instead of polling and parsing the getcurrent Atom feed.
Free — no key, no signup, rate-limited to 60 calls per minute per client.
How do you call it?
GET /v1/sec/filings/latest — product id
sec_latest_filings. Over MCP, call answerpool_get with
product_id=sec_latest_filings.
curl "https://answerpool.io/v1/sec/filings/latest?form=S-1"
Live call: https://answerpool.io/v1/sec/filings/latest?form=S-1 · JSON sample: /v1/samples/sec_latest_filings
What does the answer look like?
A representative response, the same static sample served at /v1/samples/sec_latest_filings.
as_of | 2026-08-31T14:00:00Z |
|---|---|
count | 1 |
refresh_after | 2026-09-17T11:15:00.000Z |
filings
| accession | cik | company | form | filed | items | url |
|---|---|---|---|---|---|---|
| 0002150620-26-000001 | 0002150620 | Upfront Secondary II-C, L.P. | D | 2026-08-28T17:30:10 | (empty) | https://www.sec.gov/Archives/edgar/data/2150620/000215062026000001-index.htm |
The same sample as raw JSON
{
"as_of": "2026-08-31T14:00:00Z",
"count": 1,
"filings": [
{
"accession": "0002150620-26-000001",
"cik": "0002150620",
"company": "Upfront Secondary II-C, L.P.",
"form": "D",
"filed": "2026-08-28T17:30:10",
"items": [],
"url": "https://www.sec.gov/Archives/edgar/data/2150620/000215062026000001-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.
- SEC EDGAR (US federal public domain) — upstream:
https://efts.sec.gov
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 "what was just filed" for one form type.
What you skip building
- Atom feed polling and parsing
When should you not use it?
Per-company lists or flagged events — other views are cheaper/richer.
Where else can you find this?
- Catalog entry (JSON, free)
- OpenAPI schema — input and output types, prices, the 402 flow
- llms.txt — every product in one plain-text document