Skip to main content
GET
/
v2
/
users
/
{userId}
/
wallets
/
external
Get external wallets for a user
curl --request GET \
  --url https://production.hifibridge.com/v2/users/{userId}/wallets/external \
  --header 'Authorization: Bearer <token>'
{
  "count": 1,
  "externalWallets": [
    {
      "address": "0xFE5ea74612ba174BaF7FC4C45f05dB7fF73aBA21",
      "chain": "POLYGON",
      "name": "my-wallet",
      "referenceId": "my-wallet-reference-id",
      "createdAt": "2025-09-24T19:03:41.107Z"
    }
  ],
  "nextCursor": "2025-09-24T19:03:41.107Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userId
string
required

ID of the user

Response

200 - application/json

Success

count
integer
externalWallets
object[]
nextCursor
string

The createdAt timestamp of the last record in the current page. Pass this as createdBefore in the next request to retrieve the next page of results.

I