Skip to main content
GET
/
api
/
partner
/
sandbox
/
v1
/
balance
Wallet Balance
curl --request GET \
  --url https://quickei.io/api/partner/sandbox/v1/balance \
  --header 'Authorization: Bearer <token>'
{
  "balances": [
    {}
  ],
  "balances[].currency_code": "<string>",
  "balances[].currency_symbol": "<string>",
  "balances[].balance": 123
}

Documentation Index

Fetch the complete documentation index at: https://developer.quickei.io/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve the current balances of all active wallets on your merchant account.

Example Request

curl -X GET https://quickei.io/api/partner/sandbox/v1/balance \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"

Success Response 200

{
  "message": {
    "success": ["Wallet balances."]
  },
  "data": {
    "balances": [
      {
        "currency_code": "EUR",
        "currency_symbol": "\u20ac",
        "balance": 12450.75
      },
      {
        "currency_code": "USD",
        "currency_symbol": "$",
        "balance": 5320.00
      },
      {
        "currency_code": "XAF",
        "currency_symbol": "FCFA",
        "balance": 1500000.00
      }
    ]
  }
}
balances
array
List of all active wallets on the merchant account.
balances[].currency_code
string
ISO 4217 currency code.
balances[].currency_symbol
string
Currency symbol for display (e.g. $, FCFA).
balances[].balance
number
Current wallet balance.
Only wallets with an active currency are returned. If a currency is deactivated by the platform, the wallet will not appear in the response.

Error Responses

StatusMessageCause
401Invalid API credentials.Bad or missing Bearer token