Skip to main content
GET
/
wallet-get
Get wallet balance
curl --request GET \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/wallet-get \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "data": {
    "available_balance": 150000,
    "locked_balance": 200000,
    "total_balance": 350000,
    "currency": "NGN",
    "auto_withdraw": true
  }
}

Authorizations

Authorization
string
header
required

JWT access token obtained from /auth-verify (login context) or /auth-signup. Set the bearer_token environment variable in your API client to apply it globally.

Response

Wallet balance returned

success
boolean
Example:

true

status
integer
Example:

200

data
object

The user's wallet balance. Show only available_balance on the dashboard.