Skip to main content
GET
/
v0
/
wallets
List Wallets
curl --request GET \
  --url https://api.example.com/v0/wallets/
{
  "_links": {
    "self": {
      "href": "/v0/wallets"
    },
    "user": {
      "href": "/v0/user/me"
    }
  },
  "wallets": [
    {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD78",
      "chain_id": 8453,
      "id": 1,
      "is_eoa": true,
      "is_primary": true
    }
  ]
}

Headers

x-sumvin-token
string | null
x-juno-jwt
string | null

Query Parameters

chain_id
integer | null

Filter wallets by blockchain chain ID

is_eoa
boolean | null

Filter by wallet type: true for EOA wallets, false for Safe smart wallets

expand
string[]

Expand related resources. Options: cards

Response

Wallets retrieved successfully

Response containing list of user's wallets.

HAL-style hypermedia links for navigation.

wallets
WalletData · object[]
required

List of user's wallets.