Skip to main content

Handicap History Trades

Query historical trade data for a symbol within a time range.

Request URL

GET /deepcoin/market/handicap-trade

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": 1766759271,
"data": [
{
"trade_id": "1000299140908139",
"direction": "1",
"coin_market": "BTCUSDT",
"price": 88948.8,
"platform": "deepcoin",
"timestamp": 1766759271
}
],
"errmsg": ""
}
}