Query Sub Account USDT-Ⓜ Futures Commission Adjustment
API Description
- The sub-account's USDT-Ⓜ futures commission of a symbol equals to the base commission of the symbol on the sub-account's fee tier plus the commission adjustment.
HTTP Request
GET /sapi/v1/broker/subAccountApi/commission/futures
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
subAccountId | STRING | YES | |
symbol | STRING | NO | |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
- If
symbol
not sent, commission adjustment of all symbols will be returned. - If futures disabled, it is not allowed to set subaccount's USDT-Ⓜ futures commission adjustment on any symbol.
Example Response
[
{
"subAccountId": 1,
"symbol": "BTCUSDT",
"makerCommission": 450, // USDT-Ⓜ futures commission (after adjusted) for maker
"takerCommission": 550, // USDT-Ⓜ futures commission (after adjusted) for taker
},
{
"subAccountId": 1,
"symbol": "ETHUSDT",
"makerCommission": 400,
"takerCommission": 500,
},
]