v1
latestOpenAPI 3.1.02026-07-241653251.3 MBList OHLCV data
Retrieves an list of historical data of open, high, low, close, underlying_volume and quoted_volume.
Query parameters
The underlying asset in the trading pair. E.g. BTC in the pair BTC/USD.
Filter for underlying asset in the trading pair. E.g., BTC for BTC/USD related OHLCV data.
The quoted currency in the trading pair. E.g. USD in the pair BTC/USD.
Filter for quoted asset in the trading pair. E.g., USD for BTC/USD related OHLCV data.
Filter for maximum number of data points to be returned in a single request. Default is 50 if not specified.
Filter for objects before given timestamp. E.g., 1780876800 for June 8, 2026.
Filter for all data available. Defaults to false. If set to true, time_frame is ignored and all available data is returned with daily granularity.
Filter for time_frame of the OHLCV data. Required if all_data is not set to true. E.g., daily for daily OHLCV data.
Headers
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Response
Historical OHLCV series for the requested underlying/quoted pair.
Example response
{
"message": [
{
"time": 1682899200,
"high": 28151.81,
"low": 27940.52,
"open": 28086.19,
"underlying_volume": 2900.51,
"quoted_volume": 81300199.13,
"close": 27952.92,
"average_transaction_price": 28029.6220768072
}
]
}