---
title: "Retrieve transactions"
method: GET
path: "/user/{address}/transactions"
tags: ["Wallet data endpoints"]
---

# Retrieve transactions

`GET /user/{address}/transactions`

Retrieves wallet transactions for the provided wallet address. The address may be any supported MPC address. Authentication with an API key is required.

## Path parameters

- `address` string, required

## Query parameters

- `symbols` string
- `cursor` string
- `forceRefresh` number

## Headers

- `Authorization` string, required

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

- `400` — Invalid address
- `404` — Address 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/revisions/10f8400cb1c1/schema)
