Skip to main content
GET
/
v1
/
wallets
/
{wallet_id}
/
transactions
Get 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": "eip155:8453",
      "transaction_hash": "0x03fe1b0fd11a74d277a5b7a68b762de906503b82cbce2fc791250fd2b77cf137",
      "status": "confirmed",
      "created_at": 1746920539240,
      "privy_transaction_id": "au6wxoyhbw4yhwbn1s5v9gs9",
      "wallet_id": "xs76o3pi0v5syd62ui1wmijw",
      "details": {
        "type": "transfer_sent",
        "chain": "base",
        "asset": "eth",
        "sender": "0xa24c8d74c913e5dba36e45236c478f37c8bba20e",
        "sender_privy_user_id": "rkiz0ivz254drv1xw982v3jq",
        "recipient": "0x38bc05d7b69f63d05337829fa5dc4896f179b5fa",
        "recipient_privy_user_id": "cmakymbpt000te63uaj85d9r6",
        "raw_value": "1",
        "raw_value_decimals": 18,
        "display_values": {
          "eth": "0.000000000000000001"
        }
      }
    }
  ],
  "next_cursor": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.privy.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic Auth header with your app ID as the username and your app secret as the password.

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 string length: 1
limit
number | null
Required range: x <= 100
chain
enum<string>
required
Available options:
ethereum,
arbitrum,
base,
tempo,
linea,
optimism,
polygon,
solana,
sepolia
asset

Exactly one of asset or token is required. Cannot be used together with token.

Available options:
usdc,
usdc.e,
eth,
pol,
usdt,
eurc,
usdb
token

Exactly one of token or asset is required. Cannot be used together with asset.

tx_hash
string

Response

200 - application/json

Latest wallet transactions.

transactions
object[]
required
next_cursor
string | null
required