Skip to main content
GET
/
accounts
/
{account_id}
/
financial-institutions
/
{id}
Fetch a specific financial institution
curl --request GET \
  --url https://api.brale.xyz/accounts/{account_id}/financial-institutions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "2VcUIIsgARwVbEGlIYbhg6fGG57",
  "name": "Business Checking Account",
  "status": "active",
  "bank_details": {
    "owner": "Jane Doe",
    "account_number": "1234567890",
    "routing_number": 63108680,
    "name": "Example Bank",
    "account_type": "checking",
    "address": {
      "street_line_1": "123 Main St",
      "city": "Des Moines",
      "state": "Iowa",
      "zip": "12345",
      "street_line_2": "Apt C"
    }
  }
}
Use the playground below to try this endpoint directly, or review the OpenAPI details in the right panel.

Authorizations

Authorization
string
header
required

Use the Bearer token returned from the Auth endpoint via OAuth2 client_credentials flow. Include the token in the "Authorization: Bearer " header.

Path Parameters

account_id
string<ksuid>
required

The ID of the account

Pattern: ^[a-zA-Z0-9]{26}$
Example:

"2VcUIIsgARwVbEGlIYbhg6fGG57"

id
string<ksuid>
required

The ID of the financial institution

Pattern: ^[a-zA-Z0-9]{26}$
Example:

"2VcUIIsgARwVbEGlIYbhg6fGG57"

Response

200 - */*

A financial institution object

id
string<ksuid>
Pattern: ^[a-zA-Z0-9]{26}$
Example:

"2VcUIIsgARwVbEGlIYbhg6fGG57"

name
string
Example:

"Business Checking Account"

status
enum<string>
Available options:
processing,
active,
archived
Example:

"active"

bank_details
Bank · object