Skip to main content

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 NameRequiredTypeNotes
market_typetruestringMarket type, the optional values are SPOT, FUTURES
The rates of the MARGIN market and the SPOT market are the same
markettruestringMarket name

Return parameters

Parameter NameTypeNotes
marketstringMarket name
taker_ratestringTaker fee rate
maker_ratestringMaker 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"
}