Skip to main content
GET
/
wallet-balance
Get escrow payment breakdown
curl --request GET \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/wallet-balance \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "data": {
    "escrow_id": "d4e5f6a7-b8c9-0123-defa-234567890123",
    "title": "Logo design project",
    "amount": 200000,
    "currency": "NGN",
    "status": "active",
    "payer_locked": 200000,
    "pending_release": 0,
    "released": 0,
    "refunded": 0
  }
}

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.

Query Parameters

escrow_id
string<uuid>
required

Response

Escrow payment breakdown returned

success
boolean
Example:

true

status
integer
Example:

200

data
object

Per-escrow payment breakdown — shown when the user taps into a specific escrow.