list_incoming_transactions
Retrieve incoming transaction history for a wallet with pagination. Filter by chain, status, token, sender, or time range.
Instructions
List incoming (received) transaction history with cursor-based pagination. Returns confirmed incoming transfers by default.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of transactions to return (1-100, default 20) | |
| cursor | No | Pagination cursor from previous response | |
| chain | No | Filter by chain (solana or ethereum) | |
| network | No | Filter by network (e.g., "polygon-mainnet" or CAIP-2 "eip155:137"). | |
| status | No | Filter by status: DETECTED or CONFIRMED (default: CONFIRMED) | |
| token | No | Filter by token address (null for native transfers) | |
| from_address | No | Filter by sender address | |
| since | No | Filter: only transactions detected after this epoch (seconds) | |
| until | No | Filter: only transactions detected before this epoch (seconds) | |
| wallet_id | No | Target wallet ID. Required for multi-wallet sessions; auto-resolved when session has a single wallet. |