Get Wallet Activity (Unstable)
Retrieves activity history for the specified wallet including transactions and other relevant events. This is an unstable API that may change without notice.
API scope required: wallets.read
Path parameters
A wallet locator can be of the format:
- <walletAddress>
- email:<email>:<chainType>[:<walletType>][:alias:<alias>] (walletType defaults to 'smart')
- userId:<userId>:<chainType>[:<walletType>][:alias:<alias>] (white label user example)
- phoneNumber:<phoneNumber>:<chainType>[:<walletType>][:alias:<alias>]
- twitter:<handle>:<chainType>[:<walletType>][:alias:<alias>]
- x:<handle>:<chainType>[:<walletType>][:alias:<alias>]
- me:<chainType>[:<walletType>][:alias:<alias>] (Use when calling from the client side with a client API key)
- chainType[:<walletType>]:alias:<alias>
Query parameters
The blockchain network to query. Either an EVM chain, Solana, or Stellar.
The tokens to query. Comma-separated list of either tokens or token locator strings
The status of the transfers to query
Filter transfers from this date (inclusive). ISO 8601 format. Supported for EVM and Stellar chains.
Filter transfers until this date (inclusive). ISO 8601 format. Supported for EVM and Stellar chains.
Headers
API key required for authentication
Response
The wallet activity has been successfully retrieved.
Example response
{
"data": [
{
"sender": {
"address": "0x1234567890123456789012345678901234567890",
"chain": "ethereum",
"locator": "ethereum:0x1234567890123456789012345678901234567890",
"owner": "user-123"
},
"recipient": {
"address": "0x1234567890123456789012345678901234567890",
"chain": "ethereum",
"locator": "ethereum:0x1234567890123456789012345678901234567890",
"owner": "user-123"
},
"token": {
"type": "fungible",
"chain": "ethereum",
"locator": "ethereum:0x123",
"amount": "18.833423432423",
"rawAmount": "18834161225104097789",
"contractAddress": "0x123",
"decimals": 6
},
"status": "succeeded",
"transferId": "93fd7f08-0c63-4d73-808b-6268e665c964",
"completedAt": "2025-10-21T12:34:56.789Z",
"onChain": {
"txId": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"explorerLink": "https://etherscan.io/tx/0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
},
"type": "wallets.transfer.in"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.