Run in Apidog
Orderflow
Candlestick price chart data. Open is the first price during the time period (candle), high is the highest price, low is the lowest price, and close is the last price.
Request Add parameter in header x-api-key
Example: x-api-key: ********************
or
Request Code Samples
curl --location 'https://api.hyblockcapital.com/v2/klines?coin=BTC&exchange=binance_perp_stable&timeframe=1m&startTime=1782777600&endTime=1782864000&limit=50&sort=asc&advanceFilter=none' \
--header 'x-api-key: <api-key>' Responses
{
"data" : [
{
"close" : 108750.12 ,
"high" : 109020.5 ,
"low" : 108300.75 ,
"open" : 108523.45 ,
"openDate" : 1752105600
}
] ,
"metadata" : {
"exchanges" : [
"binance_perp_stable"
] ,
"unsupportedExchanges" : [
"okx_perp_stable"
]
}
}
Modified at 2026-08-11 07:23:22