Get Account Balance
Get Account Balance
The Account Balance service is used to retrieve current balance information for the specified account and currency.
The service returns the current account balance, the amount currently available for use and the applicable overdraft limit.
Endpoint
GET /bab/v1/accounts/{iban}/balances/{currency}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| iban | string | ✅ | Account number / IBAN |
| currency | string | ✅ | Account currency |
Response Parameters
| Field | Type | Description |
|---|---|---|
| currentBalance | number | Current balance recorded on the account. |
| availableBalance | number | Amount currently available for use. It may differ from currentBalance due to an overdraft limit, blocked funds or other applicable restrictions. |
| overdraftLimit | number / null | Approved overdraft limit for the account. Returns null when no overdraft limit is available. |
| currency | string | Account currency |
availableBalance represents the final amount currently available for use and should not be calculated by the client from currentBalance and overdraftLimit. Applicable blocks, restrictions or other account conditions may also affect the available amount
Request / Response Example
GET /bab/v1/accounts/GE48TB7873440574631292/balances/GEL
{
"currentBalance": 5000,
"availableBalance": 1702.3,
"overdraftLimit": null,
"currency": "GEL"
}Updated about 19 hours ago
Did this page help you?
