Get fees
Return the caller's maker and taker fee rates, optionally scoped to a single trading pair.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | No | Trading pair to filter by |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| symbol | String | Trading pair, formatted as BASE-QUOTE (e.g. BTC-USDT). |
| makerFee | Double | Maker fee rate applied when the order provides liquidity (e.g. 0.001 = 0.1%). |
| takerFee | Double | Taker fee rate applied when the order takes liquidity (e.g. 0.001 = 0.1%). |
example
GET
https://api.btse.com/spot/api/v4/trade/feesResponse (default)
[
{
"symbol": "BTC-USD",
"makerFee": 0.0005,
"takerFee": 0.0006
}
]