API Documentation

⌘K
GET/api/1/equity-extended/xbrl/facts/{ticker}

SEC XBRL Facts API

Returns SEC XBRL financial facts (e.g., Revenue, NetIncomeLoss, Assets) filed by a company. 44M+ facts from SEC EDGAR covering all US public companies.

Parameters

5
tagstring
query

XBRL tag filter (e.g. Revenues, NetIncomeLoss, Assets)

taxonomystring
query

Taxonomy filter (e.g. us-gaap, ifrs-full)

periodstring
query

Fiscal period filter (e.g. FY, Q1, Q2, Q3, Q4)

limitnumber
query

Max results (default 500, max 5000)

tickerstringrequired
path

Stock ticker symbol (e.g. AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity-extended/xbrl/facts/AAPL?period=quarterly&limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "ticker": "AAPL",
  "tag": "Revenues",
  "taxonomy": "us-gaap",
  "unit": "USD",
  "period_end": "2024-09-30T00:00:00.000Z",
  "fiscal_period": "FY",
  "val": 394328000000
}
]