Get balance
GET/institutional/subaccounts/balance
Returns the current balance for the specified subaccount. If not specified, returns the balance for the main account.
This is a private endpoint. To send requests, you need to authenticate.
To use this private endpoint, you must use the API key of your main account with the Include all subaccounts.
Rate limit weight points: 5
Request
Query Parameters
The unique identifier for the subaccount. If not specified, returns the account balance of the main account.
Asset to return the balance for. If not specified, returns all assets with balance higher than 0.
Responses
- 200
- 4XX
The request was successful.
Response Headers
The number of remaining weight points before it resets at bitvavo-ratelimit-resetat.
The time when bitvavo-ratelimit-remaining resets to bitvavo-ratelimit-limit.
The number of available weight points in one minute.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
balances object[]required
The balances array with an object per subaccount.
The asset for which to return the balance (e.g., EUR, BTC, ETH).
The amount available for transfer or ordering.
The amount reserved by open orders.
{
"balances": [
{
"symbol": "string",
"available": "string",
"inOrder": "string"
}
]
}
For error codes, see Handle errors.