Get Fee Details
Response Example
{
"success": true,
"code": 0,
"data": {
"symbol": "BTC_USDT",
"joinDiscount": true,
"enjoyDiscount": true,
"discountRate": 0.5,
"joinDeduct": true,
"enjoyDeduct": true,
"deductRate": 0.8,
"originalMakerFee": 0,
"originalTakerFee": 0,
"realMakerFee": 0,
"realTakerFee": 0,
"dealAmount": 0,
"walletBalance": 35.10272884,
"inviterKyc": "",
"level": 9999,
"feeType": 1,
"agentFee": false,
"feeRateMode": "TIERED",
"leverageFeeRates": [],
"tieredFeeRates": [
{
"takerFeeRate": 0,
"makerFeeRate": 0,
"minTieredDealAmount": 0,
"maxTieredDealAmount": 10000000,
"realTakerFee": 0,
"realMakerFee": 0
},
{
"takerFeeRate": 0.0004,
"makerFeeRate": 0.0001,
"minTieredDealAmount": 10000001,
"realTakerFee": 0.0002,
"realMakerFee": 0.00005
}
],
"tieredDealAmount": 54,
"tieredEffectiveDay": 0,
"tieredAppointContract": true,
"tieredExcludeContractId": true,
"tieredContractIds": [10, 77, 1104],
"tieredExcludeZeroFee": false,
"statisticType": "FIXED",
"fixedStartTime": 1760544000000,
"fixedEndTime": 1763049600000
}
}
- GET
/api/v1/private/account/tiered_fee_rate/v2
Required Permission: View Order Details
Request Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | false | Contract; when symbol is provided, query fee rate info under that contract |
Response Parameters:
| Parameter | Type | Description |
|---|---|---|
| originalMakerFee | decimal | Original maker fee |
| originalTakerFee | decimal | Original taker fee |
| joinDiscount | boolean | Participate in discount |
| enjoyDiscount | boolean | Enjoy discount true enjoy discount false do not enjoy discount |
| joinDeduct | boolean | Participate in deduction |
| enjoyDeduct | boolean | Enjoy deduction |
| realMakerFee | decimal | Actual maker fee |
| realTakerFee | decimal | Actual taker fee |
| discountRate | decimal | Discount rate |
| deductRate | decimal | Deduction rate |
| dealAmount | decimal | Trading volume in the last 30 days |
| walletBalance | decimal | Wallet balance of yesterday |
| inviterKyc | string | Fee group configuration inviter KYC limit |
| feeRateMode | string | Fee mode NORMAL:standard fee LEVERAGE:leverage fee。TIERED:tiered fee |
| tieredFeeRates | list | Tiered fee configuration list; has value only when feeRateMode is TIERED |
| tieredDealAmount | decimal | Trading amount |
| tieredEffectiveDay | int | Effective days |
| tieredAppointContract | boolean | Whether to specify contract;false:not specify;true:specify |
| tieredExcludeContractId | boolean | false: not include,true: include |
| tieredContractIds | string | Contract IDs, e.g. [10,11] |
| tieredExcludeZeroFee | boolean | false: do not exclude,true: exclude;whether to exclude 0-fee trading volume |
| leverageFeeRates | list | Leverage fee configuration list; has value only when feeRateMode is LEVERAGE |
| statisticType | string | Tiered fee trading volume statistic dimension ROLLING rolling FIXED fixed |
| fixedStartTime | long | Fixed mode start time (ms) |
| fixedEndTime | long | Fixed mode end time (ms) |