---
title: "List cash-management accounts and their balances. Filter server-side rather than paging and filtering client-side."
method: GET
path: "/accounts"
tags: ["Accounts"]
---

# List cash-management accounts and their balances. Filter server-side rather than paging and filtering client-side.

`GET /accounts`

## Query parameters

- `limit` string — Page size, 1–100 (default 25).
- `cursor` string — Opaque cursor from a prior response nextCursor.
- `type` 'treasury' | 'operating' — Only accounts of this type.
- `status` 'ACTIVE' | 'ACCOUNT_RESTRICTED' | 'PENDING_APPROVAL' | 'ACCOUNT_CLOSED' — Only accounts reporting this status.

## Response `200`

A page of accounts.

- object
  - `data` Account[], required
    - `id` string, required
    - `name` string, required — Nickname when set, else the product label.
    - `type` 'treasury' | 'operating', required
    - `status` 'ACTIVE' | 'ACCOUNT_RESTRICTED' | 'PENDING_APPROVAL' | 'ACCOUNT_CLOSED', required
    - `createdAt` string, required — ISO 8601 timestamp.
    - `availableBalance` Money, required — An amount as integer minor units plus its currency.
      - `minorUnits` integer, required — Integer minor units (e.g. cents for USD); never a float.
      - `currency` string, required — ISO 4217 currency code, e.g. "USD".
    - `pendingBalance` Money, required — An amount as integer minor units plus its currency.
      - `minorUnits` integer, required — Integer minor units (e.g. cents for USD); never a float.
      - `currency` string, required — ISO 4217 currency code, e.g. "USD".
    - `postedBalance` Money, required — An amount as integer minor units plus its currency.
      - `minorUnits` integer, required — Integer minor units (e.g. cents for USD); never a float.
      - `currency` string, required — ISO 4217 currency code, e.g. "USD".
  - `nextCursor` string, nullable, required — Pass back as ?cursor for the next page; null on the last page.

---

[API](https://skmtc.dev/joinarc/apis/arc-api.md) · [All operations](https://skmtc.dev/joinarc/apis/arc-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/joinarc/arc-api/revisions/f0dc4aa0fe84/schema)
