sodax_get_user_transactions
Retrieve transaction and intent history for any wallet address across multiple chains. Filter by date range or paginate results.
Instructions
Get intent/transaction history for a specific wallet address
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| userAddress | Yes | The wallet address to look up (e.g., '0x...') | |
| limit | No | Maximum number of transactions to return (1-100) | |
| offset | No | Number of transactions to skip for pagination | |
| startDate | No | Start date filter (ISO 8601, e.g. '2026-01-01'). Don't mix with fromTs/toTs. | |
| endDate | No | End date filter (ISO 8601). Don't mix with fromTs/toTs. | |
| fromTs | No | Start timestamp filter (unix seconds). Don't mix with startDate/endDate. | |
| toTs | No | End timestamp filter (unix seconds). Don't mix with startDate/endDate. | |
| format | No | Response format: 'json' for raw data or 'markdown' for formatted text | markdown |