Skip to main content
GET
/
api
/
v1
/
auth
/
wallets
/
user
List wallets by user
curl --request GET \
  --url https://crypto.westminister.tech/api/v1/auth/wallets/user \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "c5b0fee8-a33e-4cc8-a937-982072e8a232",
    "user_id": "383f20af-5960-4374-a5c3-b7566ea8f771",
    "name": "Ethereum Wallet",
    "address": 1.1479303874223619e+48,
    "wallet_type": "hot",
    "network": "ethereum",
    "is_default": true,
    "is_active": true,
    "created_at": "2025-12-11T11:28:31.401463Z"
  },
  {
    "id": "a16e78b9-400f-40f9-a69c-3b41ec908108",
    "user_id": "383f20af-5960-4374-a5c3-b7566ea8f771",
    "name": "TRON Wallet",
    "address": "TEPwbAa9xKCki85hBUyPBSQQkTZxkQqXSt",
    "wallet_type": "hot",
    "network": "tron",
    "is_default": true,
    "is_active": true,
    "created_at": "2025-12-11T11:27:00.179508Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

user_id
string<uuid>
required

User ID.

Response

200 - application/json

Wallets for user

id
string<uuid>

Wallet ID.

user_id
string<uuid>

Owner user ID.

name
string

Wallet label (e.g.

address
string

Chain address.

wallet_type
string

hot/cold/etc.

network
string

Network name (ethereum

is_default
boolean

Whether this is the default wallet for the network.

is_active
boolean

Whether wallet is active.

created_at
string<date-time>

Wallet creation timestamp (RFC 3339).