Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the user
curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId} \
--header 'Authorization: Bearer <token>'
{
"id": "4d93ab4f-3983-4ac0-8c97-54bbc0f287fa",
"createdAt": "2025-09-24T19:12:20.541Z",
"type": "individual",
"email": "john.doe@hifibridge.com",
"name": "John Doe",
"wallets": {
"INDIVIDUAL": {
"ETHEREUM": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
},
"POLYGON": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
}
}
}
}
Get an existing Hifi user
curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId} \
--header 'Authorization: Bearer <token>'
{
"id": "4d93ab4f-3983-4ac0-8c97-54bbc0f287fa",
"createdAt": "2025-09-24T19:12:20.541Z",
"type": "individual",
"email": "john.doe@hifibridge.com",
"name": "John Doe",
"wallets": {
"INDIVIDUAL": {
"ETHEREUM": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
},
"POLYGON": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the user