GET
/
v0
/
price
/
candles
/
{asset}
/
{quote}
curl --request GET \
  --url https://api-bluvo.com/v0/price/candles/{asset}/{quote}
[
  [
    1739041200000,
    96512,
    96750,
    96399.27,
    96579.99,
    279.95367
  ],
  [
    1739044800000,
    96579.99,
    96638.89,
    96358.5,
    96455.92,
    264.21148
  ],
  [
    1739048400000,
    96455.92,
    96600,
    96360,
    96527.36,
    224.76729
  ],
  [
    1739052000000,
    96527.37,
    96712,
    96388.88,
    96473.9,
    286.0633
  ],
  [
    1739055600000,
    96473.91,
    96687.02,
    96430.43,
    96444.74,
    376.14845
  ],
  [
    1739059200000,
    96444.75,
    96584.91,
    96360.14,
    96568,
    346.91772
  ]
]

Path Parameters

asset
string
required

The asset symbol to retrieve candlestick data for (e.g. BTC, ETH).

quote
enum<string>
required

The quote currency used in the trading pair (e.g. USDT).

Available options:
USDT

Query Parameters

since
integer

Optional. The start timestamp (in UNIX milliseconds) for the candlestick data range.

Required range: x >= 0
until
integer

Optional. The end timestamp (in UNIX milliseconds) for the candlestick data range.

Required range: x >= 0
exchange
enum<string>

Optional. The exchange from which to retrieve candlestick data. Defaults to 'binance'.

Available options:
binance,
kraken,
bitget,
bitmart,
bybit,
coinbase,
cryptocom,
gateio,
kraken,
kucoin,
okx
granularity
enum<string>

Optional. The time interval for each candlestick. Allowed values include '1m', '15m', '30m', '1h', '4h', '1d'.

Available options:
1h

Response

200 - application/json
Successful response

Array of candlestick data in the format: [time, open, high, low, close, volume].