---
title: "Returns a list of consensus layer accounts.
Note that for performance reasons, the info returned by this endpoint
may be slightly stale (<2 minutes). For the most up-to-date account state,
query the single-account endpoint."
method: GET
path: "/consensus/accounts"
---

# Returns a list of consensus layer accounts.
Note that for performance reasons, the info returned by this endpoint
may be slightly stale (<2 minutes). For the most up-to-date account state,
query the single-account endpoint.

`GET /consensus/accounts`

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

A JSON object containing a list of consensus layer accounts.

- AccountList — A list of consensus layer accounts.
  - `total_count` integer, required — The total number of records that match the query, i.e. the number of records the query would return with limit=infinity.
  - `is_total_count_clipped` boolean, required — Whether total_count is clipped for performance reasons.
  - `accounts` Account[], required
    - `address` string, required — The staking address for this account.
    - `nonce` integer, required — The expected nonce for the next transaction (= last used nonce + 1)
    - `available` string, bigint, required
    - `escrow` string, bigint, required
    - `debonding` string, bigint, required
    - `delegations_balance` string, bigint, required
    - `debonding_delegations_balance` string, bigint, required
    - `first_activity` string, date-time — The second-granular consensus time of the block in which this account was first active. Dates before Cobalt (2021-04-28) are approximate.
    - `allowances` Allowance[], required — The allowances made by this account. This field is omitted when listing multiple accounts.
      - `address` string, required — The allowed account.
      - `amount` string, bigint, required
    - `stats` AccountStats, required
      - `total_sent` string, bigint
      - `total_received` string, bigint
      - `num_txns` integer, required — The total number of transactions this account was involved with.

## Other responses

- `400` — A human-readable error message.
- `404` — An empty response indicating that the requested resource was not found.
- `500` — A human-readable error message.

---

[API](https://skmtc.net/oasisprotocol/apis/oasis-nexus-api-v1.md) · [All operations](https://skmtc.net/oasisprotocol/apis/oasis-nexus-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oasisprotocol/oasis-nexus-api-v1/versions/a841981f8ee1/schema)
