API Documentation

⌘K
GET/api/1/fundamentals/facts/search

XBRL Tag Search

Search for a specific XBRL tag across all companies. Returns the latest value for each company matching the tag.

Parameters

5
tagstringrequired
query

XBRL tag name to search (e.g. Revenues, NetIncomeLoss)

fiscal_periodstring
query

Filter by fiscal period (FY, Q1, Q2, Q3, Q4)

formstring
query

Filter by SEC form type (10-K, 10-Q)

min_valnumber
query

Minimum value filter

limitinteger
query

Max results (default 100, max 500)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/fundamentals/facts/search?limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "cik": null,
  "ticker": "string",
  "tag": "string",
  "period_end": "string",
  "fiscal_year": null,
  "fiscal_period": "string",
  "form": "string",
  "val": 0,
  "unit": "string"
}
]