API Documentation

GET/api/1/market/analytics/fx-returns/{identifier}

Currency-Adjusted Returns

Returns stock performance adjusted for currency fluctuations

Parameters

3
rangestring
query

Time range: 1m, 3m, 6m, ytd, 1y, 2y, 5y, max (default 1y)

currencystring
query

Target currency (default EUR)

identifierstringrequired
path

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

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/market/analytics/fx-returns/US0378331005?range=1y&currency=EUR' \
  -H 'Accept: application/json'
200 Response
{
  "isin": "US5949181045",
  "stockCurrency": "USD",
  "targetCurrency": "EUR",
  "range": "1y",
  "returnLocal": 15.3,
  "returnTarget": 12.1,
  "fxImpact": -3.2
}