Skip to main content
GET
/
v2
/
users
/
{userId}
/
accounts
List all accounts
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"
}

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

Query Parameters

rail
enum<string>

onramp or offramp

Available options:
onramp,
offramp
type
enum<string>

account type

Available options:
us,
brazil,
columbia,
argentina,
mexico,
africa,
brazilGlobalNetwork
currency
string
limit
string

default to 10, maximum to 100

createdBefore
string<date>

ISO format: YYYY-MM-DD

createdAfter
string<date>

ISO format: YYYY-MM-DD

Response

Success

count
integer
banks
object[]
nextCursor
string

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.

I