Get Account Trading Fee Rate
Info
- This endpoint requires signature. For specific signature rules, please refer to Authentication
- This endpoint will trigger rate limit. For specific rules, please refer to Rate Limit.
Reminder
Please specify both market type
and market name
before obtaining the account fee rate. Currently, there is no endpoint provided to obtain the account fee rate of all markets.
HTTP request
GET /account/trade-fee-rate
Request parameters
Parameter Name | Required | Type | Notes |
---|---|---|---|
market_type | true | string | Market type, the optional values are SPOT , FUTURES The rates of the MARGIN market and the SPOT market are the same |
market | true | string | Market name |
Return parameters
Parameter Name | Type | Notes |
---|---|---|
market | string | Market name |
taker_rate | string | Taker fee rate |
maker_rate | string | Maker fee rate |
Request example
GET
/account/trade-fee-rate?market_type=SPOT&market=BTCUSDT
Response example
{
"code": 0,
"data": {
"market": "BTCUSDT",
"maker_rate": "0",
"taker_rate": "0.03"
},
"message": "OK"
}