---
title: "List all bank accounts"
method: GET
path: "/bank-accounts"
tags: ["Bank Accounts"]
---

# List all bank accounts

`GET /bank-accounts`

Retrieve a list of bank accounts for the authenticated team.

## Query parameters

- `enabled` boolean — Whether the bank account is enabled.
- `manual` boolean — Whether the bank account is a manual account.

## Response `200`

Retrieve a list of bank accounts

- object — Response containing a list of bank accounts.
  - `data` object[], required — Array of bank account objects.
    - `id` string, uuid, required — Unique identifier for the bank account.
    - `name` string, nullable, required — Name of the bank account.
    - `currency` string, nullable, required — Currency code of the bank account (e.g., USD, EUR).
    - `type` string, nullable, required — Type of the bank account (e.g., depository, credit).
    - `enabled` boolean, required — Whether the bank account is enabled.
    - `balance` number, nullable, required — Current balance of the bank account.
    - `manual` boolean, nullable, required — Whether the bank account is a manual account.

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/midday-ai/apis/midday-api.md) · [All operations](https://skmtc.net/midday-ai/apis/midday-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midday-ai/midday-api/revisions/c0df9243c1b0/schema)
