Skip to main content
GET
/
v2
/
users
/
{userId}
/
wallets
/
external
/
{externalWalletId}
Get an external wallet
curl --request GET \
  --url https://production.hifibridge.com/v2/users/{userId}/wallets/external/{externalWalletId} \
  --header 'Authorization: Bearer <token>'
{
  "address": "0xFE5ea74612ba174BaF7FC4C45f05dB7fF73aBA21",
  "chain": "POLYGON",
  "name": "my-wallet",
  "referenceId": "my-wallet-reference-id",
  "createdAt": "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

externalWalletId
string
required

ID of the external wallet

Response

Success

id
string<uuid>
userId
string<uuid>
chain
enum<string>
Available options:
POLYGON,
SOLANA,
ETHEREUM,
BASE
name
string
address
string
referenceId
string
active
boolean
createdAt
string<date-time>
updatedAt
string<date-time> | null
I