Get account fees
REQUEST wss://ws.bitvavo.com/v2 privateGetAccount
Returns your current trading fees from the default Category A based on the trading volume of your account.
info
Authentication required. To send messages, you need to authenticate connection.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
actionstring
Set value to privateGetAccount.
Example:
privateGetAccountrequestIdinteger
Your identifier for the request.
Example:
1{
"action": "privateGetAccount",
"requestId": 1
}
Response
- Schema
- Example (body)
Schema
actionstring
The action performed.
Example:
privateGetAccountrequestIdinteger
Your identifier for the request.
Example:
1response object
fees object
The trading fees and volume for your account.
takerstring
The fee for trades that take liquidity from the order book.
Example:
0.0025makerstring
The fee for trades that add liquidity to the order book.
Example:
0.0015volumestring
Your trading volume in the last 30 days measured in EUR.
Example:
10000.00{
"action": "privateGetAccount",
"requestId": 1,
"response": {
"fees": {
"taker": "0.0025",
"maker": "0.0015",
"volume": "10000.00"
}
}
}