GET
/
v1
/
wallets
/
{wallet_id}
/
transactions
curl --request GET \
  --url https://api.privy.io/v1/wallets/{wallet_id}/transactions \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'privy-app-id: <privy-app-id>'
{
  "transactions": [
    {
      "caip2": "<string>",
      "transaction_hash": "<string>",
      "status": "broadcasted",
      "created_at": 123,
      "details": {
        "type": "transfer_sent",
        "sender": "<string>",
        "recipient": "<string>",
        "chain": "ethereum",
        "asset": "usdc",
        "raw_value": "<string>",
        "raw_value_decimals": 123,
        "display_values": {}
      },
      "privy_transaction_id": "<string>",
      "wallet_id": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

App secret authentication.

Headers

privy-app-id
string
required

ID of your Privy app.

Path Parameters

wallet_id
string
required

ID of the wallet.

Query Parameters

cursor
string
Minimum length: 1
limit
number | null
Required range: x <= 100
chain
enum<string>
required
Available options:
base
asset
required
Available options:
usdc,
eth

Response

200 - application/json
Latest wallet transactions.

The response is of type object.