Get Fee Rates
Get Fee Rates
Get the current account trading fee rates.
Request frequency limit: 1/1s
Request URL
GET /deepcoin/account/trade-fee
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| instType | true | string | Product type Spot: SPOTContract: SWAP |
| instId | false | string | Product ID, e.g. BTC-USDT-SWAP |
| instFamily | false | string | Instrument family. Only applicable to SWAP, e.g. BTC-USDT |
| groupId | false | string | Instrument group ID. Currently unused |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| level | string | Fee tier |
| feeGroup | string | Fee group |
| category | string | Fee schedule |
| instType | string | Product type |
| maker | string | Maker fee rate. The value is passed through from the underlying trading system |
| taker | string | Taker fee rate. The value is passed through from the underlying trading system |
| makerU | string | USDT-margined contract maker fee rate |
| takerU | string | USDT-margined contract taker fee rate |
| makerUSDC | string | USDC contract maker fee rate. Currently unsupported |
| takerUSDC | string | USDC contract taker fee rate. Currently unsupported |
| delivery | string | Delivery fee rate. Currently unsupported |
| exercise | string | Exercise fee rate. Currently unsupported |
| ts | string | Data return time, Unix timestamp in milliseconds |
Response Example
{
"code": "0",
"msg": "",
"data": [
{
"level": "Lv1",
"feeGroup": "",
"category": "",
"instType": "SWAP",
"maker": "0.0002",
"taker": "0.0005",
"makerU": "0.0002",
"takerU": "0.0005",
"makerUSDC": "",
"takerUSDC": "",
"delivery": "",
"exercise": "",
"ts": "1764230400000"
}
]
}