Query Sub Account COIN-Ⓜ Futures Commission Adjustment
- The sub-account's COIN-Ⓜ 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/coinFutures
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
subAccountId | STRING | YES | |
pair | STRING | NO | BTCUSD |
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 COIN-Ⓜ futures commission adjustment on any symbol.
- Different symbols have the same commission for the same pair
Example Response
[
{
"subAccountId": 1,
"pair": "BTCUSD",
"makerCommission": 450, // COIN-Ⓜ futures commission (after adjusted) for maker
"takerCommission": 550, // COIN-Ⓜ futures commission (after adjusted) for taker
},
{
"subAccountId": 1,
"pair": "ETHUSD",
"makerCommission": 400,
"takerCommission": 500,
},
]