> ## Documentation Index
> Fetch the complete documentation index at: https://yn-c9bb3266.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Account

> Retrieve details of a BaaS bank account

## Path parameters

<ParamField path="account_id" type="string" required>
  The BaaS account identifier.
</ParamField>

## Response

Returns the account object with the same schema as the [Create Account](/api-reference/baas/create-account) response.

<ResponseExample>
  ```json 200 OK theme={"theme":{"light":"github-dark","dark":"github-dark"}}
  {
    "id": "acc_770e8400-e29b-41d4-a716-446655440000",
    "entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
    "currency": "USD",
    "country": "US",
    "account_details": {
      "account_number": "1234567890",
      "routing_number": "021000021"
    },
    "status": "ACTIVE",
    "created_at": "2026-02-01T15:00:00Z",
    "updated_at": "2026-02-01T15:00:00Z"
  }
  ```

  ```json 404 Not Found theme={"theme":{"light":"github-dark","dark":"github-dark"}}
  {
    "code": "ACCOUNT_NOT_FOUND",
    "messages": ["Account not found"],
    "http_code": 404
  }
  ```
</ResponseExample>
