Balance

You can check your account balance, bank account associated/allocated to your account.

Check Balance

GET https://api.oneappgo.com/v1/balance

Headers

NameTypeDescription

authorization*

String

Set value to Bearer SECRET_KEY

{
    "status": true,
    "message": "Account Balance Retrieved",
    "ledger_bal": "0.00",
    "available_bal": "34602.11",
    "currency": "NGN",
    "acctlist": [
        {
            "bankname": "Providus Bank",
            "acctname": "1APP(John Doe)",
            "accountnumber": "1234567890"
        },
        {
            "bankname": "Fidelity bank",
            "acctname": "John Doe",
            "accountnumber": "4550589796"
        },                
    ]
}

Take a look at how you might do this:

curl --location --request GET 'https://api.oneappgo.com/v1/balance' \
--header 'Authorization: Bearer SECRET_KEY'

Sample Response

{
    "status": true,
    "message": "Account Balance Retrieved",
    "ledger_bal": "0.00",
    "available_bal": "34602.11",
    "currency": "NGN",
    "acctlist": [
        {
            "bankname": "Providus Bank",
            "acctname": "1APP(John Doe)",
            "accountnumber": "1234567890"
        },           
        {
            "bankname": "Kuda Bank",
            "acctname": "1APP(Paul Doe)",
            "accountnumber": "2345678900"
        },  
    ]
}

Last updated