Wallet Transactions

Retrieve transaction history for a specified wallet address.

Request:

GET /wallets/{address}/transactions

Parameter

Parameter

Type

Description

limit

integer

Number of results to return (default: 50)

type

string

Transaction type (transfer, swap, stake)

Response Example:

json

{
  "address": "Hx8d...3aB1",
  "transactions": [
    {
      "signature": "5Vx9...kLm3",
      "timestamp": "2023-10-01T15:00:00Z",
      "type": "transfer",
      "from": "Hx8d...3aB1",
      "to": "7vfC...dF2k",
      "amount": "100.5",
      "token": "SOL",
      "fee": "0.000005"
    }
  ]
}

Last updated