API Documentation

⌘K
GET/api/1/equity/coverage/{identifier}

Data Coverage API

Returns data availability flags for the given ISIN, indicating which data types are available (balance sheet, estimates, ESG, supply chain, etc.). Use before other calls to avoid 404s.

Parameters

1
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/coverage/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "ticker": "AAPL",
  "hasBalanceSheet": false,
  "hasEstimates": false,
  "hasESG": false,
  "hasSupplyChain": false,
  "hasOwnership": false
}