Trading pair actual fee - Spot/Margin/trade_hf
This interface is for the actual fee rate of the trading pair. You can inquire about fee rates of 10 trading pairs each time at most. The fee rate of your sub-account is the same as that of the master account.
HTTP REQUEST
GET /api/v1/trade-fees
Example
GET /api/v1/trade-fees?symbols=BTC-USDT,KCS-USDT
{
"code": "200000",
"data": [
{
"symbol": "BTC-USDT",
"takerFeeRate": "0.001",
"makerFeeRate": "0.001"
},
{
"symbol": "KCS-USDT",
"takerFeeRate": "0.002",
"makerFeeRate": "0.0005"
}
]
}
API KEY PERMISSIONS
This endpoint requires the General permission.
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Spot weight
:3
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
symbols | String | Yes | Trading pair (optional, you can inquire fee rates of 10 trading pairs each time at most) |
RESPONSES
Param | Description |
---|---|
symbol | The unique identity of the trading pair and will not change even if the trading pair is renamed |
takerFeeRate | Actual taker fee rate of the trading pair |
makerFeeRate | Actual maker fee rate of the trading pair |