> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getlemma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get bank account

> Retrieve a single bank account by its ID.

Returns a single bank account.

## Path parameters

<ParamField path="account_id" type="string" required>
  The unique identifier of the bank account to retrieve.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique identifier for the account, prefixed with `account_`.
</ResponseField>

<ResponseField name="entity_id" type="string">
  The ID of the entity that owns this account.
</ResponseField>

<ResponseField name="name" type="string">
  The name of the account.
</ResponseField>

<ResponseField name="account_number" type="string">
  The bank account number.
</ResponseField>

<ResponseField name="routing_number" type="string">
  The ABA routing number.
</ResponseField>

<ResponseField name="total_balance" type="integer">
  The total balance of the account in cents, including funds that are not yet
  available.
</ResponseField>

<ResponseField name="available_balance" type="integer">
  The balance available for use in cents. This excludes any held funds from
  pending transactions.
</ResponseField>

<ResponseField name="opened_at" type="string">
  The timestamp when the account was opened, in ISO 8601 format.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "account_Rv4nBt8xKw2pMh6s",
    "entity_id": "entity_k7mXp2vR9nTfBw4s",
    "name": "Operating Account",
    "account_number": "987654321",
    "routing_number": "101050001",
    "total_balance": 2450000,
    "available_balance": 2350000,
    "opened_at": "2026-01-15T09:30:00Z"
  }
  ```

  ```json 404 theme={null}
  {
    "statusCode": 404,
    "error": "Not found",
    "message": "Account not found"
  }
  ```
</ResponseExample>
