API Documentation

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

Analyst Estimates API

Returns analyst estimates for the given ISIN

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/estimates/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "period": "2030-06-30T00:00:00.000Z",
  "year": 2030,
  "revenueEstimate": 516905000000,
  "revenueHigh": 586236000000,
  "revenueLow": 464520000000,
  "revenueAnalysts": 5,
  "epsEstimate": 27.7134,
  "epsHigh": 28.5285,
  "epsLow": 26.6266,
  "epsAnalysts": 3,
  "ebitEstimate": 255176000000,
  "ebitHigh": 269372000000,
  "ebitLow": 238454000000,
  "ebitAnalysts": 4
}
]