API Documentation

⌘K
GET/api/1/charting/ohlcv/{identifier}

OHLCV Candles

Returns OHLCV candle data for charting. Supports intraday (1,5,15,30,60 min) and daily/weekly/monthly resolutions.

Parameters

4
resolutionstring
query

Candle resolution: 1, 5, 15, 30, 60 (minutes), D (day), W (week), M (month)

fromnumber
query

Start timestamp (Unix seconds)

tonumber
query

End timestamp (Unix seconds)

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/charting/ohlcv/US0378331005?resolution=D&from=2025-01-01&to=2025-12-31' \
  -H 'Accept: application/json'
200 Response
{
  "t": [],
  "o": [],
  "h": [],
  "l": [],
  "c": [],
  "v": []
}