API Documentation
⌘K
API Key
Get free key 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
4resolutionstringCandle resolution: 1, 5, 15, 30, 60 (minutes), D (day), W (week), M (month)
fromnumberStart timestamp (Unix seconds)
tonumberEnd timestamp (Unix seconds)
identifierstringrequiredSecurity 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": []
}