---
title: "List of accounts"
method: GET
path: "/blockchain-v2/{asset}/accounts"
tags: ["List of blockchain entities v2"]
---

# List of accounts

`GET /blockchain-v2/{asset}/accounts`

Returns a list of blockchain accounts with their balances.<br/> Results are ordered by tuple `(creation_chain_sequence_number, account)`.<br/> To fetch the next page of results use `next_page_url` JSON response field.

## Path parameters

- `asset` string, required

## Query parameters

- `accounts` string[]
- `start_time` string
- `end_time` string
- `start_height` integer
- `end_height` integer
- `start_chain_sequence_number` integer
- `end_chain_sequence_number` integer
- `start_inclusive` boolean
- `end_inclusive` boolean
- `timezone` string
- `page_size` integer
- `paging_from` 'start' | 'end', PagingFrom
- `pretty` boolean
- `next_page_token` string

## Response `200`

Blockchain accounts.

- BlockchainAccountsResponseV2 — Blockchain accounts response.
  - `data` object[], required
    - `account` string, required — Account id.
    - `type` string, required — Account type. The possible values are: `UTXO`, `VIRTUAL`, `ACCOUNT`.
    - `balance` string — Balance of the account.
    - `n_debits` string — Number of debits.
    - `n_credits` string — Number of credits.
    - `creation_height` string, required — Height of the block.
    - `creation_block_hash` string, required — Hash of the block.
    - `creation_time` string, required — The time in ISO 8601 date-time format. Always with nanoseconds precision.
    - `creation_chain_sequence_number` string, required — Chain sequence number.
    - `last_chain_sequence_number` string — Chain sequence number.
    - `last_debit_height` string — Height of the block.
    - `last_credit_height` string — Height of the block.
  - `next_page_token` string — Token of the next page results for a given request.
  - `next_page_url` string — URL of the next page results for a given request.

## Other responses

- `401` — Requested resource requires authorization.
- `403` — Requested resource is not available with supplied credentials.

---

[API](https://skmtc.net/coinmetrics/apis/coin-metrics-api-v4.md) · [All operations](https://skmtc.net/coinmetrics/apis/coin-metrics-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/coinmetrics/coin-metrics-api-v4/revisions/774268c0a4fe/schema)
