Skip to main content
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:
  • minute
  • minutes3
  • minutes5
  • minutes15
  • minutes30
  • hour
  • hour4
  • day
  • month
  • year
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 by date 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 (not high / low).
  • The date is 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.