Get Historical Order Deal Details
Response Example
{
"success": true,
"code": 0,
"data": [
{
"id": "9466823344",
"symbol": "DOGE_USDT",
"side": 3,
"vol": 1,
"price": 0.18695,
"fee": 0,
"feeCurrency": "USDT",
"profit": 0,
"category": 1,
"orderId": "739211854408619008",
"timestamp": 1761912240000,
"positionMode": 1,
"taker": true
},
{
"id": "9466784116",
"symbol": "DOGE_USDT",
"side": 3,
"vol": 1,
"price": 0.18645,
"fee": 0,
"feeCurrency": "USDT",
"profit": 0,
"category": 1,
"orderId": "739211257974395392",
"timestamp": 1761912098000,
"positionMode": 1,
"taker": true
}
]
}
- GET
/api/v1/private/order/list/order_deals/v3
Required Permission: View Order Details
Request Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Trading pair |
| start_time | long | false | Unix millisecond timestamp |
| end_time | long | false | Unix millisecond timestamp |
| page_num | int | true | Page number; default 1 |
| page_size | int | true | Page size; default 20; max cannot exceed 1000 |
Response Parameters:
| Parameter | Type | Description |
|---|---|---|
| pageSize | int | Page size |
| totalCount | int | Total count |
| totalPage | int | Total pages |
| currentPage | int | Current page |
| resultList | list | Result set |
| id | long | Deal order id |
| symbol | string | Contract |
| side | int | Order side 1 open long,2 close short,3 open short,4 close long |
| vol | decimal | Deal quantity |
| price | decimal | Deal price |
| fee | decimal | Fee |
| feeCurrency | string | Fee currency |
| timestamp | long | Updated time |