---
title: "Get a List of Transactions"
method: GET
path: "/{protocol}/{network}/txs"
tags: ["Blocks"]
---

# Get a List of Transactions

`GET /{protocol}/{network}/txs`

Get a List of transactions, starting with the lastest one. Each call returns an array of the entire list.

## Path parameters

- `protocol` string, required
- `network` string, required

## Query parameters

- `block_hash` string
- `block_number` integer
- `assets` string
- `order` 'desc' | 'asc'
- `page_token` string
- `page_size` integer

## Response `200`

Transactions

- TxPage
  - `total` integer — The number of items in txs.
  - `data` Tx[]
    - `id` string — Unique transaction identifier.
    - `block_id` string, nullable — Block hash if mined, otherwise omitted.
    - `date` integer — The transaction creation unix timestamp.
    - `status` 'completed' | 'failed' — Result status of the transaction.
    - `num_events` integer — List of transaction events.
    - `meta` object — Protocol specific data that doesn't fit into a standard model.
    - `block_number` integer, nullable — Block number if mined, otherwise omitted.
    - `confirmations` integer — Total transaction confirmations.
    - `events` Event[], nullable
      - `id` string — The event identifier.
      - `transaction_id` string — The transaction identifer this event is presented.
      - `type` string — The event type.
      - `denomination` string, nullable — The Symbol of currency, can be natibe currency or token currency.
      - `destination` string, nullable — The destination address of the event.
      - `source` string, nullable — The source address of the event.
      - `meta` object — Protocol specific data that doesn't fit into a standard model.
        - `addresses` string[] — A list of addresses.
        - `index` integer — The index number.
        - `script` string — The script.
        - `script_type` string — The script type.
      - `date` integer — The event date in unix timestamp format.
      - `amount` integer, nullable — The coin amount transfered in the event.
      - `decimals` integer, nullable — The coin amount transfered in the event.
    - `assets` string[], nullable — List of moved assets by asset path. Find all the asset paths on this [page](https://docs.blockdaemon.com/reference/available-currencies-and-tokens).
    - `nonce` integer — The nonce of the transaction.
  - `meta` Meta, nullable — The meta details.
    - `paging` Paging — The pagination details.
      - `next_page_token` string — The next page token to use in the following request.

## Other responses

- `401` — Invalid or expired token
- `403` — Invalid continuation
- `429` — Rate limit exceeded
- `500` — An internal server error happened
- `503` — The resource you are trying to access is currently unavailable

---

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