Get Account Statement

Get Account Statement

The Account Statement service is used to retrieve summary account statement information for the specified account, currency and period.

The service returns the opening and closing balances for the period, as well as total credits and debits for the specified period.


Endpoint

GET /bab/v1/accounts/statements


Query Parameters

ParameterTypeRequiredDescription
AccountNumberstringAccount number / IBAN
AccountCurrencyCodestringAccount currency
PeriodFromdate-timeStatement period start date
PeriodTodate-timeStatement period end date

Response Parameters

FieldTypeDescription
openingDatedate-timeDate from which statement data starts
openingBalancenumberOpening booked/available balance as of openingDate
closingDatedate-timeDate that ends the statement period
closingBalancenumberClosing available balance as of closingDate
creditSumnumberTotal credits during the specified period
debitSumnumberTotal debits during the specified period
currencystringAccount currency
accountNumberstringAccount number / IBAN

Request / Response Example

GET /bab/v1/accounts/statements?AccountNumber=GE12TB7189885380696572&AccountCurrencyCode=GEL&PeriodFrom=2026-01-01T00:00:00&PeriodTo=2026-06-01T00:00:00

{
    "openingDate": "2026-01-01T00:00:00",
    "openingBalance": 0,
    "closingDate": "2026-06-01T00:00:00",
    "closingBalance": -8.90,
    "creditSum": 10172.6,
    "debitSum": 10181.50,
    "currency": "GEL",
    "accountNumber": "GE12TB7189885380696572"
}