API Documentation

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

Stock OHLCV Candles API

Returns OHLCV-like candle data for a stock. Provides daily price data with open, high, low, close approximated from daily quotes, and volume where available.

Parameters

2
rangestring
query

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

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/candles/US0378331005?range=1y' \
  -H 'Accept: application/json'
200 Response
[
  {
  "timestamp": 1705276800000,
  "open": 178.5,
  "high": 182,
  "low": 177.8,
  "close": 181.2
}
]