Skip to main content
GET
/
v1
/
users
/
{userId}
/
wallets
Get user wallets balances
curl --request GET \
  --url https://api.cadanapay.com/v1/users/{userId}/wallets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "517075a2-17db-469f-9481-eb8347cb920c",
      "currency": "USD",
      "balance": "7034.48",
      "available": "7034.48",
      "processing": "0.00"
    },
    {
      "id": "6a8f81b3-28ec-570g-a592-fc9458dc031d",
      "currency": "BTC",
      "balance": "0.15234567",
      "available": "0.15234567",
      "processing": "0.00"
    },
    {
      "id": "7b9g92c4-39fd-681h-b603-gd0569ed142e",
      "currency": "ETH",
      "balance": "2.45678901",
      "available": "2.45678901",
      "processing": "0.00"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

userId
string<uuid>
required

The unique identifier for the user

Example:

"c06f3427-3bbe-4d70-9a54-28acda267e48"

Response

Get user account balances

data
object[]