Get market fees
GET/account/fees
Returns your current trading fees from the Category of the specified market based on the trading volume of your account.
This is a private endpoint. To send requests, you need to authenticate.
Rate limit weight points: 1
Request
Query Parameters
The market for which to get fee information. If not specified, returns the fees for your current tier in Category A.
BTC-EURPossible values: [EUR, USDC]
The quote currency for which to get fee information. If not specified, returns the fees for your current tier in Category A.
Responses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
The price tier used to calculate your trading fees.
The first tier in the Bitvavo fee structure is 0.
0Your trading volume over the last 30 days in EUR.
10000.00The fee for trades that take liquidity from the order book.
0.0025The fee for trades that add liquidity to the order book.
0.0015{
"tier": "0",
"volume": "10000.00",
"taker": "0.0025",
"maker": "0.0015"
}
To learn more, see Handle errors.