GET
/v1/account/balanceGet account balance
Returns available, pending, and reserve balances per currency.
Authentication
Secret Key — send Authorization: Bearer YOUR_KEY header.
Response fields
| Field | Type | Description |
|---|---|---|
available | object | Available balance by currency |
pending | object | Pending settlement by currency |
reserve | object | Rolling reserve (5%, 90 days) |
Code examples
bash
curl https://api.watenga.africa/v1/account/balance \
-H "Authorization: Bearer sk_test_YOUR_KEY"Response example
json
{
"success": true,
"data": {
"available": { "USD": "1250.00", "ZWG": "0.00" },
"pending": { "USD": "50.00", "ZWG": "0.00" },
"reserve": { "USD": "125.00", "ZWG": "0.00" }
}
}