Get account balance
REQUEST wss://ws.bitvavo.com/v2 privateGetBalance
Returns the current balance for your account.
info
Authentication required. To send messages, you need to authenticate connection.
Rate limit weight points: 5
Request
- Schema
- Example (body)
Body
actionstring
Set value to privateGetBalance.
Example:
privateGetBalancerequestIdinteger
Your identifier for the request.
Example:
1symbolstring
The asset for which you want to return the balance. If not specified, returns the balance for all assets above zero.
Example:
BTC{
"action": "privateGetBalance",
"requestId": 1,
"symbol": "BTC"
}
Response
- Schema
- Example (body)
Schema
- Array [
- ]
actionstring
The action performed.
Example:
privateGetBalancerequestIdinteger
Your identifier for the request.
Example:
1response object
symbolstring
The asset for which the balance was returned.
Example:
BTCavailablestring
The balance that is available for use.
Example:
1.57593193inOrderstring
The balance that is currently reserved for open orders.
Example:
0.74832374[
{
"action": "privateGetBalance",
"requestId": 1,
"response": {
"symbol": "BTC",
"available": "1.57593193",
"inOrder": "0.74832374"
}
}
]