---
title: "List cash accounts"
method: GET
path: "/v2/accounts/cash"
tags: ["Accounts"]
---

# List cash accounts

`GET /v2/accounts/cash`

This endpoint lists all the existing cash accounts with their status.

## Response `200`

Returns a list of cash accounts.

- PageCashAccount
  - `next_cursor` string, nullable
  - `items` CashAccount[], required
    - `id` string, required — ID of the cash account
    - `name` string, required
    - `status` 'ACTIVE'
    - `current_balance` Money, required — Money fields can be signed or unsigned. Fields are signed (an unsigned value will be interpreted as positive). The amount of money will be represented in the smallest denomination of the currency indicated. For example, USD 7.00 will be represented in cents with an amount of 700.
      - `amount` integer, required — The amount of money, in the smallest denomination of the currency indicated by currency. For example, when currency is USD, amount is in cents.
      - `currency` string, nullable — The type of currency, in ISO 4217 format.
    - `available_balance` Money, required — Money fields can be signed or unsigned. Fields are signed (an unsigned value will be interpreted as positive). The amount of money will be represented in the smallest denomination of the currency indicated. For example, USD 7.00 will be represented in cents with an amount of 700.
      - `amount` integer, required — The amount of money, in the smallest denomination of the currency indicated by currency. For example, when currency is USD, amount is in cents.
      - `currency` string, nullable — The type of currency, in ISO 4217 format.
    - `account_number` string, required
    - `routing_number` string, required
    - `primary` boolean, required — Whether or not this account is the primary account. There will always be only one primary account.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden

---

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