GET
/v1/fnd/stocks/:ticker/financials/:conceptgzip requiredSingle concept across periods
One XBRL concept across every reported period for a company. Smaller than the full bundle but still gzip-required.
- Auth
X-API-Keyheader- Format
- JSON, gzip-encoded
- Rate limits
- Per-key, see limits
Example
request · shell
curl -H "X-API-Key: $KEY" -H "Accept-Encoding: gzip" --compressed \
"https://api.sifting.io/v1/fnd/stocks/AAPL/financials/Revenues"200OKapplication/json (gzip)
{ "ticker": "AAPL", "cik": "0000320193", "taxonomy": "us-gaap", "concept": "Revenues", "label": "Revenues", "description": "Aggregate revenue recognized during the period...", "series": [ { "value": 94836000000, "unit": "USD", "period_start": "2024-01-01", "period_end": "2024-03-30", "fiscal_year": 2024, "fiscal_period": "Q2", "form": "10-Q", "accession": "0000320193-24-000089", "filed_at": "2024-05-02" } ]}Loading runner…
First load onlyParameters
ParameterDescription
Parameter
tickerrequiredstring · path- Ticker symbol (case-insensitive).
conceptrequiredstring · path- XBRL tag in CamelCase (e.g. Revenues, EarningsPerShareBasic, EntityCommonStockSharesOutstanding).
taxonomyenum · query- us-gaap (default) | dei | ifrs-full | srt.
Accept-Encodingrequiredstring · header- Must include gzip.
Response fields
FieldDescription
Field
tickerstring- Ticker symbol.
cikstring- SEC Central Index Key, zero-padded.
taxonomystring- XBRL taxonomy of the concept.
conceptstring- XBRL concept tag.
labelstring- Human-readable concept label.
descriptionstring- Concept definition.
series[]array- Reported values for this concept across every period and unit.
series[].valuefloat- Reported numeric value.
series[].unitstring- Unit of measure, e.g. USD, shares.
series[].period_startstring (YYYY-MM-DD)- Start of the reporting period.
series[].period_endstring (YYYY-MM-DD)- End of the reporting period.
series[].fiscal_yearinteger- Fiscal year of the value.
series[].fiscal_periodstring- Fiscal period, e.g. Q2, FY.
series[].formstring- Source form type.
series[].accessionstring- Source filing accession.
series[].filed_atstring (YYYY-MM-DD)- Date the source filing was filed.