Get market fees
REQUEST wss://ws.bitvavo.com/v2 privateGetFees
Returns your current trading fees from the Category of the specified market based on the trading volume of your account.
Authentication required. To send messages, you need to authenticate connection.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
Set value to privateGetFees.
privateGetFeesYour identifier for the request.
1The market for which to get fee information. If not specified, returns the fees for your current tier in Category A.
BTC-EURThe quote currency for which to get fee information. If not specified, returns the fees for your current tier in Category A.
Possible values: [EUR, USDC]
EUR{
"action": "privateGetFees",
"requestId": 1,
"market": "BTC-EUR",
"quote": "EUR"
}
Response
- Schema
- Example (body)
Schema
The action performed.
privateGetFeesYour identifier for the request.
1response object
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{
"action": "privateGetFees",
"requestId": 1,
"response": {
"tier": "0",
"volume": "10000.00",
"taker": "0.0025",
"maker": "0.0015"
}
}