Wallet Balance
Fetch your organisation's current wallet balance in USD. Use this endpoint to monitor credit levels and trigger top-up flows in your integrations.
GET/v2.0/account/wallet/balance
Code Examples
curl -X GET "https://api.sendiee.com/v2.0/account/wallet/balance" \
-H "Authorization: Bearer YOUR_API_KEY"Response — 200 OK
{
"success": true,
"data": {
"balance": 24.56,
"currency": "USD",
"isActive": true
}
}Response Fields
| Field | Type | Description |
|---|---|---|
| data.balance | number | Current wallet balance (up to 4 decimal places) |
| data.currency | string | Currency code — always "USD" |
| data.isActive | boolean | Whether the wallet is currently active |
Try It
Try it — API Playground