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

ParameterTypeRequiredDescription
ibanstringAccount number / IBAN
currencystringAccount currency

Response Parameters

FieldTypeDescription
currentBalancenumberCurrent balance recorded on the account.
availableBalancenumberAmount currently available for use.
It may differ from currentBalance due to an overdraft limit, blocked funds or other applicable restrictions.
overdraftLimitnumber / nullApproved overdraft limit for the account.
Returns null when no overdraft limit is available.
currencystringAccount 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"
}

Did this page help you?