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

# Get Accounts

`GET /v1/accounts`

Retrieve a list of accounts with optional filtering and pagination.

## Query parameters

- `accountStatus` 'ACTIVE' | 'INACTIVE' | 'CREATING'
- `accountType` 'CREDIT' | 'CASH'
- `createDateStart` string, date-time
- `createDateEnd` string, date-time
- `recentCreditHistory` 'YES'
- `customerId` string, uuid
- `after` string
- `limit` string, integer
- `sortField` 'accountStatus' | 'accountType' | 'createdDate'
- `sortDirection` 'ASC' | 'DESC'

## Response `200`

OK

- object
  - `after` string, nullable — The token of the last item in the response
  - `totalCount` integer — The total number of items in the entire filtered data set
  - `items` object[]
    - `accountId` string, uuid
    - `accountStatus` 'ACTIVE' | 'INACTIVE' | 'CREATING'
    - `accountType` 'CREDIT' | 'CASH'
    - `createDate` string, date-time
    - `credit` object
      - `creditCurrency` string
      - `creditLimit` string, number
      - `utilizedCredit` string, number
      - `unutilizedCredit` string, number
    - `assets` object[]
      - `asset` string
      - `tradeBalance` string, number — The balance with which the customer can trade
      - `custodyBalance` string, number — The balance which the provider is holding on behalf of the customer
      - `pendingSettlement` string, number — The balance which is pending settlement
      - `open` string, number — The balance which is currently in open orders or transactions
      - `availableToWithdraw` string, number — The balance which is available to withdraw
    - `recentCreditHistory` object[]
      - `creditLimitRequested` string, number
      - `newCreditLimit` string, number
      - `action` 'INCREASE' | 'DECREASE' | 'SET'
      - `updatedAt` string, date-time — Date-time in ISO 8601 format

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

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