Skip to main content

Handicap History Kline 1m

Query historical 1m kline data for a symbol within a time range.

Request URL

GET /deepcoin/market/handicap-kline1m

Request Parameters

ParameterTypeRequiredDescriptionExample
symbolStringYesTrading symbolBTCUSDT
stimeintegerYesStart timestamp (seconds)1700000000
etimeintegerNoEnd timestamp (seconds)1800000000
limitintegerYesResult size, between 1 and 2000 (default: 60)60

Response Parameters

ParameterTypeDescriptionExample
etimeintegerResponse end timestamp1700003600
dataStringData payload (string)...
errmsgStringError message (if any)

Response Example

{
"code": "0",
"msg": "",
"data": {
"etime": 1766757360,
"data": [
{
"platform": "deepcoin",
"coin_market": "BTCUSDT",
"timestamp": 1766757360,
"open_price": 89021.2,
"close_price": 89025.9,
"high_price": 89025.9,
"low_price": 89021.2,
"volume": 0.00640052,
"amount": 569.80413281
}
],
"errmsg": ""
}
}