API Explorer
Account Services
Account Mini-Statement

Account Mini-statement

Test URL

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

Live URL

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

This service will return the last (10) ten transactions of a given account number. Its a super efficient service compared to the fullstatement web service.

200 Success Response Schema

Field NameField TypeField Description
statusboolResponse status
codenumberResponse code
messagestringResponse message
accountNumberstringaccount number
currencystringaccount currency
balancestringaccount available balance
transactionsarraytransactions list
datestringtransaction date
chequeNumberstringcheque number. Applicable to current accounts only
descriptionstringtransaction description
amountstringtransaction amount
typestringtransaction 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+accountNumber
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/miniStatement/KE/00201XXXX14605'

Example Response

Example Response
{
   "status":true,
   "code":0,
   "message":"success",
   "data":{
      "accountNumber":"00201XXXX14605",
      "currency":"KES",
      "balance":1000,
      "transactions":[
         {
            "chequeNumber":null,
            "date":"2017-01-01T00:00:00",
            "description":"EAZZY-FUNDS TRNSF TO A/C XXXXXXXXXXXX",
            "amount":"100",
            "type":"Debit"
         },
         {
            "chequeNumber":null,
            "date":"2017-01-03T00:00:00",
            "description":"SI ACCOUNT TO ACCOUNT THIRD PA",
            "amount":"51",
            "type":"Debit"
         },
         {
            "chequeNumber":null,
            "date":"2017-01-05T00:00:00",
            "description":"CHARGE FOR OTC ECS TRAN",
            "amount":"220",
            "type":"Debit"
         },
         {
            "chequeNumber":null,
            "date":"2017-01-05T00:00:00",
            "description":"SI ACCOUNT TO ACCOUNT THIRD PA",
            "amount":"20",
            "type":"Debit"
         }
      ]
   }
}