GET
/v1/fnd/stocks/:ticker/filingsRecent SEC filings
Up to 1000 most recent filings across all form types for a company. Filterable by form and filing-date window.
- Auth
X-API-Keyheader- Format
- JSON
- Rate limits
- Per-key, see limits
Example
request · shell
curl -H "X-API-Key: $KEY" \
"https://api.sifting.io/v1/fnd/stocks/AAPL/filings?form=10-K&limit=10"200OKapplication/json
{ "data": [ { "accession": "0000320193-26-000013", "form": "10-Q", "filed_at": "2026-05-01", "period_end": "2026-03-28", "accepted_at": "2026-05-01T16:30:21Z", "items": "", "primary_document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000013/aapl-20260328.htm", "description": "Form 10-Q", "has_xbrl": true } ], "meta": { "next_cursor": "eyJvIjo1MH0", "as_of": "2026-05-02T12:34:56Z", "total": 1000 }}Loading runner…
First load onlyParameters
ParameterDescription
Parameter
tickerrequiredstring · path- Ticker symbol (case-insensitive).
formstring · query- Comma-separated list of exact form types, e.g. 10-K,10-Q,10-K/A.
fromdate · query- Inclusive lower bound on filed_at (YYYY-MM-DD).
todate · query- Inclusive upper bound on filed_at (YYYY-MM-DD).
limitinteger · query- Page size. Default 50, max 200.
cursorstring · query- Opaque cursor from meta.next_cursor on the previous page.
Response fields
FieldDescription
Field
data[]array- Filings matching the query, newest first.
data[].accessionstring- SEC accession number.
data[].formstring- Form type, e.g. 10-K, 10-Q, 8-K.
data[].filed_atstring (YYYY-MM-DD)- Date the filing was filed.
data[].period_endstring (YYYY-MM-DD)- Fiscal period the filing covers.
data[].accepted_atstring (RFC 3339)- When the filing was accepted.
data[].itemsstring- Comma-joined item codes; empty when not applicable.
data[].primary_document_urlstring- Canonical link to the primary document.
data[].descriptionstring- Human-readable form description.
data[].has_xbrlboolean- Whether structured XBRL data accompanies the filing.
meta.next_cursorstring- Opaque pagination token; pass back as cursor for the next page.
meta.as_ofstring (RFC 3339)- When the response was produced.
meta.totalinteger- Total filings matching the query.
More in SEC filings
See all- Single filing detail
GET/v1/fnd/stocks/:ticker/filings/:accession - 8-K material events
GET/v1/fnd/stocks/:ticker/events - Schedule 13D / 13G beneficial ownership
GET/v1/fnd/stocks/:ticker/ownership - DEF 14A proxy statements
GET/v1/fnd/stocks/:ticker/compensation - Earnings release history
GET/v1/fnd/stocks/:ticker/earnings