Read wallet balance
Returns the authenticated caller’s wallet balance and currency. Authenticate with the api-token header. The email is derived server-side from the auth identity, so a token can only ever read its own wallet (IDOR-safe).
By default this is an O(1) wallet primary-key lookup (balance + currency only). Pass include_counts=1 to also return topups_count and purchases_count (email-scoped compound indexes on orders).
Gated on account:api_ordering:read for API keys (admin-grant-only; off by default).
Authorizations
API key. Create and manage keys at /v4/account/api-keys or in the dashboard.
Query Parameters
When true, include topups_count and purchases_count in the response. Omit for the lightweight balance-only read used by checkout.