API Documentation
⌘K
API Key
Get free key GET
/api/1/fundamentals/financials/{identifier}XBRL Financial Facts
Returns all SEC XBRL financial facts for a company identified by ticker or CIK number. Supports filtering by tag, fiscal period, and form type.
Parameters
5tagstringFilter by specific XBRL tag (e.g. Revenues, NetIncomeLoss)
fiscal_periodstringFilter by fiscal period (e.g. FY, Q1, Q2, Q3, Q4)
formstringFilter by SEC form type (e.g. 10-K, 10-Q)
limitintegerMax results (default 500, max 2000)
identifierstringrequiredSecurity identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL, 037833100)
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/fundamentals/financials/US0378331005?limit=10' \
-H 'Accept: application/json'200 Response
[
{
"cik": 320193,
"ticker": "AAPL",
"taxonomy": "us-gaap",
"tag": "Revenues",
"period_end": "2024-09-28T00:00:00.000Z",
"fiscal_year": 2024,
"fiscal_period": "FY",
"form": "10-K",
"val": 391035000000,
"unit": "USD"
}
]