API Documentation

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

Stock Returns API

Returns annual price returns (absolute and relative) with dividend-adjusted total return for the given ISIN over a configurable lookback period

Parameters

2
yearsnumber
query

Years of history (default 10, max 30)

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/returns/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "quoteReturns": {
    "year": 2024,
    "returnRate": 12.5,
    "startPrice": 0,
    "endPrice": 0
  },
  "mean": 15.2,
  "variance": 120.5
}