API Documentation

GET/api/1/crypto-extended/candles/{symbol}

Crypto OHLCV Candles API

Returns OHLCV candle data from Binance for the given crypto pair. Available intervals: 1h, 4h, 1d, 1w.

Parameters

3
intervalstring
query

Candle interval: 1h, 4h, 1d, 1w (default 1d)

limitnumber
query

Number of candles (default 365, max 1000)

symbolstringrequired
path

Trading pair symbol (e.g. BTCUSDT, ETHUSDT)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/crypto-extended/candles/BTC?interval=1d&limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "open_time": 1705276800000,
  "open": 42150.5,
  "high": 42500,
  "low": 41900,
  "close": 42300,
  "volume": 15234.5
}
]