Skip to main content

Get fees

Return the caller's maker and taker fee rates, optionally scoped to a single trading pair.

Request Parameters​

NameTypeRequiredDescription
symbolStringNoTrading pair to filter by

Response Content​

NameTypeDescription
symbolStringTrading pair, formatted as BASE-QUOTE (e.g. BTC-USDT).
makerFeeDoubleMaker fee rate applied when the order provides liquidity (e.g. 0.001 = 0.1%).
takerFeeDoubleTaker fee rate applied when the order takes liquidity (e.g. 0.001 = 0.1%).
example
GEThttps://api.btse.com/spot/api/v4/trade/fees

Response (default)

[
{
"symbol": "BTC-USD",
"makerFee": 0.0005,
"takerFee": 0.0006
}
]