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"
}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"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the user
Success
Show child attributes
POLYGON, SOLANA, ETHEREUM, BASE 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.