API Documentation

GET/api/1/equity-extended/financials-reported/{identifier}

As-Reported Financials API

Returns raw as-reported financial data from SEC filings (10-K, 10-Q) for the given security. This is the original XBRL data as filed, not standardized. Includes all line items from the filing.

Parameters

3
formstring
query

Filter by form type: 10-K (annual), 10-Q (quarterly). Default: all

limitnumber
query

Number of filings (default 10, max 50)

identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity-extended/financials-reported/US0378331005?limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "accessNumber": "0000320193-23-000106",
  "form": "10-K",
  "cik": "320193",
  "year": 2023,
  "quarter": 0,
  "startDate": "2022-10-01T00:00:00.000Z",
  "endDate": "2023-09-30T00:00:00.000Z",
  "filedDate": "2023-11-03T00:00:00.000Z",
  "report": {}
}
]