Wallet Balance
Retrieve the NGN wallet balance and available balance for a business.
Endpoint​
GET v1/auth/wallet/balance?currency=NGN
Authentication​
Pass your API key in the request header:
token: <your_api_key>
Response​
{
"success": true,
"message": "Wallet balance retrieved successfully",
"data": {
"businessId": "636d27ded870aafbca231be2",
"businessName": "Tibesti Corp",
"currency": "NGN",
"ledgerBalance": 14703.06,
"availableBalance": 14703.06
}
}
Fields​
| Field | Type | Description |
|---|---|---|
ledgerBalance | number | Your official account balance. This is the settled NGN balance on record before any pending transactions. |
availableBalance | number | The amount you can spend right now. Calculated as ledgerBalance minus the sum of all pending debit transactions. |
Rate Limiting​
This endpoint is limited to 2 requests per minute per business (keyed on your API token).
Exceeding the limit returns HTTP 429:
{
"success": false,
"message": "Too many requests, please try again after a minute."
}
Notes​
- Both balances are in NGN (Nigerian Naira) or the below for your reference.
{
  NGN
  USD
  KES
  UGX
  GHS
}
availableBalancewill be lower thanledgerBalancewhen there are pending debits.- If no wallet exists for the business, both values return
0.