---
title: "Get transactions for a wallet address"
method: GET
path: "/sdk/{environmentId}/chains/{chainName}/transactions/{address}"
tags: ["SDK"]
---

# Get transactions for a wallet address

`GET /sdk/{environmentId}/chains/{chainName}/transactions/{address}`

Fetches the list of transactions for a given wallet address within an environment.

## Path parameters

- `environmentId` string, required
- `chainName` 'ETH' | 'EVM' | 'FLOW' | 'SOL' | 'ALGO' | 'STARK' | 'COSMOS' | 'BTC' | 'ECLIPSE' | 'SUI' | 'SPARK' | 'TRON' | 'APTOS' | 'TON' | 'STELLAR', required
- `address` string, required

## Query parameters

- `networkId` number, required
- `limit` integer
- `offset` string

## Response `200`

Wallet transactions fetched successfully

- WalletTransactionsResponse
  - `transactions` WalletTransaction[], required
    - `transactionHash` string, required
    - `blockNumber` number, required — Block number of the transaction
    - `transactionTimestamp` string, date-time, required — Timestamp of the transaction
    - `blockHash` string, required
    - `blockExplorerUrls` string[], required — URLs to the block explorer for the transaction
    - `fromAddress` string, required
    - `toAddress` string, required
    - `labels` WalletTransactionType[], required
    - `assetTransfers` WalletTransactionAssetTransfer[], required
      - `tokenAddress` string
      - `fromAddress` string, required
      - `toAddress` string, required
      - `amount` number, required — Amount of the asset transferred as reported by the upstream provider. The unit is **not consistent** across providers: native SOL transfers are in lamports (minor unit), while SPL token and EVM transfers are in major units. Prefer `amountRaw` for any value-sensitive logic.
      - `amountRaw` string, required — Raw minor-unit integer string (lamports / wei / smallest unit). Divide by `10 ** metadata.decimals` to get the major-unit value. Always present and consistent across providers and chains.
      - `metadata` object
        - `name` string — Name of the asset
        - `symbol` string — Symbol of the asset
        - `decimals` number — Decimals of the asset
        - `imageUri` string — Logo URI of the asset
    - `chainName` 'ETH' | 'EVM' | 'FLOW' | 'SOL' | 'ALGO' | 'STARK' | 'COSMOS' | 'BTC' | 'ECLIPSE' | 'SUI' | 'SPARK' | 'TRON' | 'APTOS' | 'TON' | 'STELLAR', required
    - `networkId` number, required
  - `nextOffset` string — Offset to the next page of transactions

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

## Changes

- **2026-08-25** `ade8d3a24626` — 1 info
  - added the required property `transactions/items/assetTransfers/items/amountRaw` to the response with the `200` status
- **2026-07-26** `aac826315d90` — 4 warning, 1 info
  - added the new `external` enum value to the `transactions/items/labels/items/` response property for the response status `200`
  - added the new `internal` enum value to the `transactions/items/labels/items/` response property for the response status `200`
  - added the new `received` enum value to the `transactions/items/labels/items/` response property for the response status `200`
  - added the new `token` enum value to the `transactions/items/labels/items/` response property for the response status `200`
  - …1 more

[Change history](https://skmtc.dev/dynamic/apis/dashboard-api/changes/sdk/:environmentId/chains/:chainName/transactions/:address/get.md)

---

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