sifting/io
GET/v1/fnd/stocks/:ticker/filings/:accession

Single filing detail

Get one SEC filing's metadata by accession number: form type, filing date, primary document URL, and the full file manifest from its EDGAR archive folder.

Format
JSON

Example

request · shell
curl -H "X-API-Key: $KEY" \
  "https://api.sifting.io/v1/fnd/stocks/AAPL/filings/0000320193-26-000013"
200OKapplication/json
{  "accession": "0000320193-26-000013",  "form": "10-Q",  "filed_at": "2026-05-01",  "period_end": "2026-03-28",  "accepted_at": "2026-05-01T16:30:21Z",  "primary_document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000013/aapl-20260328.htm",  "description": "Form 10-Q",  "has_xbrl": true,  "ticker": "AAPL",  "cik": "0000320193",  "archive_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000013/",  "files": ["aapl-20260328.htm", "aapl-20260328.xsd", "Financial_Report.xlsx", "..."]}
Loading runner…
First load only

Parameters

Parameter
tickerrequiredstring · path
Ticker symbol (case-insensitive).
accessionrequiredstring · path
Accession number, accepts dashed (0000320193-26-000013) or undashed (000032019326000013).

Response fields

Field
accessionstring
SEC accession number.
formstring
Form type, e.g. 10-K, 10-Q, 8-K.
filed_atstring (YYYY-MM-DD)
Date the filing was filed.
period_endstring (YYYY-MM-DD)
Fiscal period the filing covers.
accepted_atstring (RFC 3339)
When the filing was accepted.
primary_document_urlstring
Canonical link to the primary document.
descriptionstring
Human-readable form description.
has_xbrlboolean
Whether structured XBRL data accompanies the filing.
tickerstring
Ticker symbol.
cikstring
SEC Central Index Key, zero-padded.
archive_urlstring
Link to the filing's full EDGAR archive folder.
files[]array
File manifest from the archive folder.

More in SEC filings

See all