Query Contract Fee Deduction Details
Response Example
{
"success": true,
"code": 0,
"data": [
{
"id": 54236193,
"orderId": 739132568196170240,
"feeCurrency": "USDT",
"fee": 0.0906990372,
"deductType": 2,
"deductFeeCurrency": "USDT",
"deductFee": 0.0906990372,
"timestamp": 1761893337000
},
{
"id": 52060733,
"orderId": 735908917455962624,
"feeCurrency": "USDT",
"fee": 0.297936756,
"deductType": 0,
"timestamp": 1761124758000
}
]
}
- GET
/api/v1/private/order/fee_details
Required Permission: View Order Details
Request Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Contract name |
| ids | long | false | Deal ID; up to 20 can be sent in a batch |
| start_time | long | false | Start time; if omitted, defaults to current time minus 7 days; max span 90 days(Unix millisecond timestamp) |
| end_time | long | false | End time; the span between start and end is 90 days(Unix millisecond timestamp) |
| page_num | int | false | Current page number, default 1 |
| page_size | int | false | Page size, default 20, max 100 |
Response Parameters:
| Parameter | Type | Description |
|---|---|---|
| id | long | Deal ID |
| symbol | string | Contract name |
| orderId | long | Order ID |
| feeCurrency | string | Fee currency |
| fee | decimal | Fee |
| deductType | string | Deduction type: 0 = No deduction, 1 = MXPOINT deduction, 2 = Trial bonus deduction |
| deductFeeCurrency | string | Deducted fee currency |
| deductFee | decimal | Deducted fee |
| timestamp | long | Deal time |