API Explorer
Account Services
Account Balance

Account Balance

Test URL

GEThttps://uat.finserve.africa/v3-apis/account-api/v3.0/accounts/balances/{countryCode}/{accountId}

Live URL

GEThttps://api.finserve.africa/v3-apis/account-api/v3.0/accounts/balances/{countryCode}/{accountId}

This web service enables an application or service retrieve the current and available balance of an account

📘 Supported Banks and Countries

We currently support statements from Equity Bank (KE, SS, TZ, UG, DRC RW). One Web Service to rule access them all :muscle:. More banks, Card associations & Mobile wallets will be coming soon.

200 Success Response Schema

Field NameField TypeField Description
statusboolResponse status
codenumberResponse code
messagestringResponse message
data.currencystringaccount currency
data.balancesarrayarray of balances
amountstringaccount balance
typestringaccount balance type.

Example Request

⚠️

In the example below, please remember to replace the variables enclosed within curly brackets {{ }} with the actual values.

Signature Formulae e.g KE1450160649886
countryCode+accountId
Example Request
curl -X GET \
	-H 'Authorization: Bearer {{access_token}}'  \
	-H 'signature: {{signature}}'  \
	-L 'https://uat.finserve.africa/v3-apis/account-api/v3.0/accounts/balances/KE/00201XXXX14605'

Example Response

Example Response
{
  "status": true,
  "code": 0,
  "message": "success",
  "data": {
    "balances": [
      {
        "amount": "5655.58",
        "type": "Available"
      },
      {
        "amount": "5655.58",
        "type": "Current"
      }
    ],
    "currency": "KES"
  }
}