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

FieldTypeDescription
data.balancenumberCurrent wallet balance (up to 4 decimal places)
data.currencystringCurrency code — always "USD"
data.isActivebooleanWhether the wallet is currently active

Try It

Try it — API Playground