API Documentation

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

Growth Metrics API

Returns compound annual growth rates (3Y, 5Y, 10Y) for revenue, net income, EBIT, dividends, and EPS

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/growth/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "isin": "US0378331005",
  "income3Y": 12.5,
  "income5Y": 0,
  "income10Y": 0,
  "revenue3Y": 0,
  "revenue5Y": 0,
  "revenue10Y": 0,
  "ebit3Y": 0,
  "ebit5Y": 0,
  "ebit10Y": 0
}