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
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
| symbol | String | Yes | Trading symbol | BTCUSDT |
| stime | integer | Yes | Start timestamp (seconds) | 1700000000 |
| etime | integer | No | End timestamp (seconds) | 1800000000 |
| limit | integer | Yes | Result size, between 1 and 2000 (default: 60) | 60 |
Response Parameters
| Parameter | Type | Description | Example |
|---|---|---|---|
| etime | integer | Response end timestamp | 1700003600 |
| data | String | Data payload (string) | ... |
| errmsg | String | Error 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": ""
}
}