GET /api/ohlc
Market Data
GET /api/ohlc
OHLCV candle data with multiple intervals.
GET
GET /api/ohlc
Description
Returns OHLC (open, high, low, close) candles with volume for a trading pair over a specified date range and interval.Parameters
Pair code in
{base}_{target} format. Example: BTC_USDT.Candle interval. Allowed values:
minuteminutes3minutes5minutes15minutes30hourhour4daymonthyear
Range start, ISO 8601 (UTC, no offset). Example:
2026-04-28T00:00:00.Range end, ISO 8601 (UTC, no offset). Example:
2026-04-29T00:00:00.Response
Array of candle objects, sorted bydate ascending.
Candle start time, ISO 8601.
Opening price of the candle.
Highest price during the candle.
Lowest price during the candle.
Closing price of the candle.
Volume during the candle in target (quote) currency.
Volume during the candle in base currency.
Example request
Example response
Notes
- Field naming is
max/min(nothigh/low). - The
dateis approximate — within a few seconds of the canonical interval boundary, depending on when the first trade of the period was matched. - For very long ranges and small intervals, paginate manually by issuing multiple calls with non-overlapping
start/end.
