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

# List of transactions

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

Returns a list of blockchain transactions metadata.<br/> Results are ordered by tuple `(tx_position, txid)`.<br/> To fetch the next page of results use `next_page_url` JSON response field.<br/> Results are limited to the last 30 days for Community users.

## Path parameters

- `asset` string, required

## Query parameters

- `txids` string[]
- `block_hashes` string[]
- `start_time` string
- `end_time` string
- `start_height` integer
- `end_height` integer
- `chain` string
- `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 transactions.

- BlockchainTransactionsResponseV2 — Blockchain transactions response.
  - `data` BlockchainTransactionInfoV2[], required
    - `txid` string, required — Identifier (txid) of the transaction.
    - `consensus_time` string, required — The time in ISO 8601 date-time format. Always with nanoseconds precision.
    - `miner_time` string — The time in ISO 8601 date-time format. Always with nanoseconds precision.
    - `tx_position` string, required — Transaction position.
    - `min_chain_sequence_number` string — Chain sequence number.
    - `max_chain_sequence_number` string — Chain sequence number.
    - `n_balance_updates` string, required — Number of balance updates.
    - `amount` string, required — Sum of all debits in the transaction.
    - `stale` string — This field is set to true if the corresponding block is stale. Otherwise omitted.
    - `block_hash` string, required — Hash of the block.
    - `height` string, required — Height of the block.
    - `version` string — Version of the transaction.
    - `physical_size` string — Physical size of the transaction, bytes.
    - `consensus_size` string — Consensus size of the transaction.
    - `fee` string — Fee of the transaction.
  - `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.
  - `warning` WarningObject
    - `type` string, required — Warning type string. Can be used for warning identification.
    - `message` string, required — Human-friendly warning description. Do not use for warning identification in your code.

## 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)
