---
title: "List all accounts"
method: GET
path: "/accounts"
tags: ["Faster Payments"]
---

# List all accounts

`GET /accounts`

Use the GET accounts endpoint to retrieve all accounts associated with my organisation.

## Query parameters

- `offset` integer
- `limit` integer

## Response `200`

List of accounts.

- AccountListPaged
  - `meta` object
    - `count` integer — The number of records returned as part of the response.
    - `offset` integer — The starting record number.
    - `limit` integer — The maximum number of records that can be returned as part of the response.
    - `total` integer — The total number of records contained in the query response.
    - `links` object[]
      - `rel` 'self' | 'first' | 'last' | 'prev' | 'next'
      - `href` string — Link to the resource which should be appended to base URL.
      - `title` string — Description of the link.
  - `data` Account[]
    - `mid` string, uuid — The unique identifier assigned by Acquired.com for the Mid.
    - `account_reference` string — A value to identify the account.
    - `account_detail` object
      - `account_name` string — The account name.
      - `sort_code` string — The sort code for the account.
      - `account_number` string — The account number for the account.
      - `iban` string — International Bank Account Number associated with the account.
      - `bic` string — Bank Identifier Code associated with the account.
      - `currency` 'aed' | 'aud' | 'cad' | 'chf' | 'cny' | 'dkk' | 'eur' | 'gbp' | 'hkd' | 'jpy' | 'mxn' | 'sek' | 'usd' | 'zar' — ISO 4217 currency code in lower case.
    - `balance` string, float — The current balance of the account.
    - `available_balance` string, float — The available balance of the current.
    - `account_status` 'active' — Indicates whether the account is active or not.
    - `created` string, date-time — The date and time the account record was created.
    - `last_updated` string, date-time — The date and time the account record was last updated.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

---

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