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
}
]
}
}
List of all active wallets on the merchant account.
balances[].currency_symbol
Currency symbol for display (e.g. $, FCFA).
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
| Status | Message | Cause |
|---|
401 | Invalid API credentials. | Bad or missing Bearer token |