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
string
required
Pair code in
{base}_{target} format. Example: BTC_USDT.string
required
Candle interval. Allowed values:
minuteminutes3minutes5minutes15minutes30hourhour4daymonthyear
string
required
Range start, ISO 8601 (UTC, no offset). Example:
2026-04-28T00:00:00.string
required
Range end, ISO 8601 (UTC, no offset). Example:
2026-04-29T00:00:00.Response
Array of candle objects, sorted bydate ascending.
string
required
Candle start time, ISO 8601.
decimal
required
Opening price of the candle.
decimal
required
Highest price during the candle.
decimal
required
Lowest price during the candle.
decimal
required
Closing price of the candle.
decimal
required
Volume during the candle in target (quote) currency.
decimal
required
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.
