curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId}/accounts \
--header 'Authorization: Bearer <token>'{
"count": 1,
"banks": [
{
"id": "d748da4f-aeb1-4a9d-af30-62ae7e82b897",
"createdAt": "2025-09-27T03:34:12.181Z",
"updatedAt": "2025-09-27T03:34:12.181Z",
"accountHolder": {
"type": "individual",
"name": "Henry Wu",
"address": {
"addressLine1": "Example St 1",
"addressLine2": "Apt 123",
"city": "New York",
"stateProvinceRegion": "NY",
"postalCode": "10010",
"country": "USA"
}
},
"us": {
"accountType": "Checking",
"accountNumber": "123456789",
"routingNumber": "021000021",
"iban": null,
"swiftCode": null,
"bankName": "Bank of NoWhere",
"bankCountry": "USA",
"bankAddress": {
"addressLine1": "Example St 1",
"addressLine2": "Apt 123",
"city": "New York",
"stateProvinceRegion": "NY",
"postalCode": "10010",
"country": "USA"
},
"currency": "usd"
},
"rail": {
"currency": "usd",
"railType": "offramp",
"paymentRail": "ach"
}
}
],
"nextCursor": "2025-09-27T03:34:12.181Z"
}List all accounts associated with a user under your organization.
curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId}/accounts \
--header 'Authorization: Bearer <token>'{
"count": 1,
"banks": [
{
"id": "d748da4f-aeb1-4a9d-af30-62ae7e82b897",
"createdAt": "2025-09-27T03:34:12.181Z",
"updatedAt": "2025-09-27T03:34:12.181Z",
"accountHolder": {
"type": "individual",
"name": "Henry Wu",
"address": {
"addressLine1": "Example St 1",
"addressLine2": "Apt 123",
"city": "New York",
"stateProvinceRegion": "NY",
"postalCode": "10010",
"country": "USA"
}
},
"us": {
"accountType": "Checking",
"accountNumber": "123456789",
"routingNumber": "021000021",
"iban": null,
"swiftCode": null,
"bankName": "Bank of NoWhere",
"bankCountry": "USA",
"bankAddress": {
"addressLine1": "Example St 1",
"addressLine2": "Apt 123",
"city": "New York",
"stateProvinceRegion": "NY",
"postalCode": "10010",
"country": "USA"
},
"currency": "usd"
},
"rail": {
"currency": "usd",
"railType": "offramp",
"paymentRail": "ach"
}
}
],
"nextCursor": "2025-09-27T03:34:12.181Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the user
onramp or offramp
onramp, offramp account type The type of account.
us, brazil, colombia, argentina, mexico, africa, brazilGlobalNetwork, nigeriaGlobalNetwork, mexicoGlobalNetwork, hongKongGlobalNetwork, chinaGlobalNetwork, singaporeGlobalNetwork default to 10, maximum to 100
ISO format: YYYY-MM-DD
ISO format: YYYY-MM-DD
Success
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.