Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId}/accounts/{accountId} \
--header 'Authorization: Bearer <token>'
{
"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"
}
}
Get an existing onramp or offramp account detail.
curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId}/accounts/{accountId} \
--header 'Authorization: Bearer <token>'
{
"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"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.