curl --request GET \
--url https://production.hifibridge.com/v2/users \
--header 'Authorization: Bearer <token>'{
"count": 2,
"users": [
{
"id": "4d93ab4f-3983-4ac0-8c97-54bbc0f287fa",
"createdAt": "2025-09-24T19:12:20.541Z",
"type": "individual",
"email": "[email protected]",
"name": "John Doe",
"wallets": {
"INDIVIDUAL": {
"ETHEREUM": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
},
"POLYGON": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
}
}
}
},
{
"id": "264484e0-979a-5fa3-9335-947f55e5999a",
"createdAt": "2025-09-24T19:03:41.107Z",
"type": "business",
"email": "[email protected]",
"name": "Random Bizz",
"wallets": {
"INDIVIDUAL": {
"ETHEREUM": {
"address": "0x2f78AEFA879819D7a5C9a87fE8BF5e7B961f5500"
},
"POLYGON": {
"address": "0x2f78AEFA879819D7a5C9a87fE8BF5e7B961f5500"
}
}
}
}
],
"nextCursor": "2025-09-24T19:03:41.107Z"
}Get all existing Hifi users
curl --request GET \
--url https://production.hifibridge.com/v2/users \
--header 'Authorization: Bearer <token>'{
"count": 2,
"users": [
{
"id": "4d93ab4f-3983-4ac0-8c97-54bbc0f287fa",
"createdAt": "2025-09-24T19:12:20.541Z",
"type": "individual",
"email": "[email protected]",
"name": "John Doe",
"wallets": {
"INDIVIDUAL": {
"ETHEREUM": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
},
"POLYGON": {
"address": "0x43B343Bb48E23F58406271131B71448fF95787AD"
}
}
}
},
{
"id": "264484e0-979a-5fa3-9335-947f55e5999a",
"createdAt": "2025-09-24T19:03:41.107Z",
"type": "business",
"email": "[email protected]",
"name": "Random Bizz",
"wallets": {
"INDIVIDUAL": {
"ETHEREUM": {
"address": "0x2f78AEFA879819D7a5C9a87fE8BF5e7B961f5500"
},
"POLYGON": {
"address": "0x2f78AEFA879819D7a5C9a87fE8BF5e7B961f5500"
}
}
}
}
],
"nextCursor": "2025-09-24T19:03:41.107Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
If passed, you will get all users under the type.
individual, business If passed, you will get all users with the case-insensitive partial match of firstName.
If passed, you will get all users with the case-insensitive partial match of lastName.
If passed, you will get all users with the case-insensitive partial match of businessName.
If passed, you will get all users with the case-insensitive partial match of email.
default to 10, maximum to 100
ISO format: YYYY-MM-DD
ISO format: YYYY-MM-DD
Success
Show child attributes
User ID
Data and time when the user was created
Show child attributes
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.