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

# List accounts

`GET /accounts`

Search and retrieve customer deposit accounts.

## Query parameters

- `limit` integer
- `pageKey` string, uuid

## Response `200`

A paginated list of deposit accounts

- ListAccountsResponse — Paginated list of deposit accounts.
  - `organizationId` string, uuid — The organization that owns the accounts. Equivalent to the customerId returned by GET /customers/current.
  - `page` Page — Pagination metadata for list responses.
    - `nextPageKey` string — Cursor token to retrieve the next page of results. Absent when there are no more results.
    - `totalElements` integer — Total number of elements across all pages
  - `accounts` DepositAccount[], required
    - `accountCategory` 'DEPOSIT_ACCOUNT', required — Category of account
    - `accountType` 'CHECKING', required — Type of deposit account
    - `accountId` string, required — Unique identifier for the account
    - `accountNumber` string, required — Full account number
    - `accountNumberDisplay` string, required — Masked or truncated account number for display
    - `productName` string, required — Product name for the account
    - `nickName` string — User-assigned nickname for the account
    - `nickname` string — Alternate nickname field
    - `currency` Currency, required — Currency information.
      - `currencyCode` string, required — ISO 4217 currency code
    - `status` 'OPEN' | 'CLOSED' | 'DELINQUENT' | 'NEGATIVECURRENTBALANCE' | 'PAID' | 'PENDINGCLOSE' | 'PENDINGOPEN' | 'RESTRICTED', required — Status of the account
    - `description` string — Description of the account
    - `accountOpenDate` string, date, required — Date the account was opened (YYYY-MM-DD)
    - `accountCloseDate` string, date — Date the account was closed (YYYY-MM-DD). Present only for closed accounts.

## Other responses

- `400` — Invalid request parameters
- `401` — Missing or invalid OAuth 2.0 Bearer token
- `403` — Insufficient permissions or IP not whitelisted
- `500` — Unexpected server error

---

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