---
title: "List a customer's accounts"
method: GET
path: "/v1/customers/{customer_id}/accounts"
tags: ["Accounts"]
---

# List a customer's accounts

`GET /v1/customers/{customer_id}/accounts`

List a customer's accounts

## Path parameters

- `customer_id` string, uuid, required

## Query parameters

- `cursor` string, string, nullable
- `page_size` integer

## Response `200`

Successfully retrieved a customers accounts

- ListAccountsPagedResponse
  - `pages` CursorString, required
    - `next` string, nullable
    - `size` integer, required
  - `results` Account[], required
    - `account_name` string, string, required — User-friendly account name.
    - `account_owner` string, string, required — Name of the account holder. This is the name that will show up on any bank statement.
    - `account_type` 'primary' | 'payment' | 'virtual', required
    - `addressable_details` AddressableDetails[], required — A list of addressable account identifiers associated with this account. These identifiers can be used to receive money into the account. Please note that this can contain multiple details addressable over a different payment schemes.
      - `account_details` union, required
        - object
          - `iban` string, string, required
        - object
          - `wire` WireBankDetails, required
            - `account_number` string, string, required
            - `routing_number` string, string, required
        - object
          - `scan` ScanDetails, required
            - `account_number` string, string, required
            - `sort_code` string, string, required
      - `payment_schemes` PaymentScheme[], required — List of payment schemes that this account details are addressable over.
    - `available_balance` integer, required — Sum of the immediate available funds in the account. This includes transactions that have not yet been cleared.
    - `currency` 'AED' | 'USD' | 'JOD' | 'EGP' | 'SAR' | 'GBP' | 'EUR' | 'HKD' | 'CNH' | 'SGD', required
    - `current_balance` integer, required — Sum of all the money in the account.
    - `customer_id` string, uuid, nullable
    - `default_details` union
      - object
        - `iban` string, string, required
      - object
        - `wire` WireBankDetails, required
          - `account_number` string, string, required
          - `routing_number` string, string, required
      - object
        - `scan` ScanDetails, required
          - `account_number` string, string, required
          - `sort_code` string, string, required
    - `external_id` string, nullable — User-provided account id.
    - `id` string, uuid, required — Account id.
    - `status` 'open' | 'frozen' | 'closed', required

---

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