Skip to main content

Get Trade Rate

Frequency limit: 10 times/1s (UID)

Description

Get trade fee rate

HTTP Request

  • GET /api/v2/common/trade-rate
Request Example
curl "https://api.cointr.com/api/v2/common/trade-rate?symbol=BTCUSDT&businessType=spot" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

Request Parameters

ParameterTypeRequiredDescription
symbolStringYesTrading pair name, e.g. BTCUSDT
businessTypeStringYesBusiness type
spot Spot
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1683875302853,
"data": {
"makerFeeRate": "0.0002",
"takerFeeRate": "0.0006"
}
}

Response Parameters

ParameterTypeDescription
makerFeeRateStringMaker fee rate
Decimal form, e.g. 0.0002 represents 0.02%
takerFeeRateStringTaker fee rate
Decimal form, e.g. 0.0002 represents 0.02%