Skip to main content
Version: V3

Get Commission Rate (USER_DATA)

  • GET /api/v3/account/commissionRate

Weight(IP): 5

Request parameters

ParameterTypeRequired?Description
symbolStringYesTrading pair

Request example

curl "https://api-spot.weex.com/api/v3/account/commissionRate?symbol=BTCUSDT" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "Content-Type: application/json"

Response parameters

ParameterTypeDescription
symbolStringTrading pair
makerCommissionRateStringBest Maker fee rate applicable to manually placed orders for this user, e.g. "0.0002" means 0.02%.
takerCommissionRateStringBest Taker fee rate applicable to manually placed orders for this user, e.g. "0.0004" means 0.04%.
apiMakerFeeRateDecimalThe best Maker fee rate applicable to orders placed through the API by this user. May be null.
apiTakerFeeRateDecimalThe best Taker fee rate applicable to orders placed through the API by this user. May be null.

Response example

{
"symbol": "BTCUSDT",
"makerCommissionRate": "0.0002",
"takerCommissionRate": "0.0004",
"apiMakerFeeRate": 0.0002,
"apiTakerFeeRate": 0.0004
}