---
title: "Retrieves transaction data associated with blockchain accounts attached to a domain"
method: GET
path: "/public/{domain}/transactions"
tags: ["Profile data endpoints"]
---

# Retrieves transaction data associated with blockchain accounts attached to a domain

`GET /public/{domain}/transactions`

Retrieves transaction data associated with requested domain. Paging is supported using the cursor query string parameter.

## Path parameters

- `domain` string, required

## Query parameters

- `symbols` string
- `cursor` string

## Response `200`

Transaction data

- SerializedTxns[]
  - `data` SerializedTx[]
    - `hash` string — Transaction hash for the transaction
    - `block` string — Block ID
    - `value` number — Native value of the transaction
    - `gas` number — Gas consumed by the transaction
    - `method` string — Human readable label for the transaction (if available)
    - `link` string — Link to blockchain scanner
    - `success` boolean — Indicates transaction result was successful
    - `type` string — Type of transaction record (native or NFT)
    - `imageUrl` string — Preview URL associated with this transaction (if available)
    - `symbol` string — Ticker symbol or other identifier associated with the transaction
    - `description` string — Human readable description of the transaction
    - `from` object
      - `address` string — source address for transaction
      - `label` string — human readable label for address (if available)
      - `link` string — Link to blockchain scanner
    - `to` object
      - `address` string — source address for transaction
      - `label` string — human readable label for address (if available)
      - `link` string — Link to blockchain scanner
  - `cursor` string — Pointer to next page of paginated data

## Other responses

- `404` — Domain not found

---

[API](https://skmtc.net/unstoppabledomains/apis/profile-api.md) · [All operations](https://skmtc.net/unstoppabledomains/apis/profile-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unstoppabledomains/profile-api/versions/10f8400cb1c1/schema)
