---
title: "Fetches Sidetree transactions in chronological order."
method: GET
path: "/anchor/transactions"
tags: ["Anchor"]
---

# Fetches Sidetree transactions in chronological order.

`GET /anchor/transactions`

Note: The call may not return all Sidetree transactions in one batch, in which case the caller can use the transaction number of the last transaction in the returned batch to fetch subsequent transactions.

## Query parameters

- `since` string
- `transaction-time-hash` string

## Response `200`

Success

- AnchorTransactions
  - `more_transactions` boolean — True if there are more transactions beyond the returned batch. False otherwise.
  - `transactions` AnchorTransaction[] — The transactions array must always end with a complete block of data, but can start in the middle of a block if since query parameter is provided.
    - `transaction_number` number — A monotonically increasing number (need NOT be by 1) that identifies a Sidtree transaction.
    - `transaction_time` number — The logical anchor time this transaction is anchored. Used for protocol version selection.
    - `transaction_time_hash` string — The hash associated with the transaction time.
    - `anchor_string` string — The string written to the anchor for this transaction.
    - `transaction_fee_paid` string — A number representing the fee paid for this transaction.
    - `normalized_transaction_fee` string — A number representing the normalized transaction fee used for proof-of-fee calculation.
    - `writer` string — A string representing the writer of the transaction. Used in the value time lock calculations.

## Other responses

- `400` — Bad Request * `invalid_transaction_number_or_time_hash`
- `401` — Unauthorized
- `404` — Not Found
- `500` — Server Error

---

[API](https://skmtc.net/decentralized-identity/apis/sidetree-rest-api.md) · [All operations](https://skmtc.net/decentralized-identity/apis/sidetree-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/decentralized-identity/sidetree-rest-api/revisions/9a32549ab92a/schema)
