Accounts
Get balance for an account
Returns the balance of an account in the form of two objects—balance and available_balance.
get/v1/accounts/{account_id}/balance
Path parameters
account_idstring required
Response
The operation was successful.
Example response
{
"available_balance": {
"value": 89000,
"unit": "cents",
"currency": "EUR"
},
"balance": {
"value": 99000,
"unit": "cents",
"currency": "EUR"
},
"seizure_protection": {
"current_blocked_amount": {
"value": 2000,
"unit": "cents",
"currency": "EUR"
},
"protected_amount": {
"value": 2000,
"unit": "cents",
"currency": "EUR"
},
"protected_amount_expiring": {
"value": 2000,
"unit": "cents",
"currency": "EUR"
},
"protected_amount_expiring_date": "2022-07-31",
"spa_calculation_start_date": "2020-07-31"
}
}