api_indexer_search_for_transactions
Search Algorand blockchain transactions using filters like time, round, address, type, or asset to find specific transaction data.
Instructions
Search for transactions with various criteria
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of transactions to return | |
| beforeTime | No | Only return transactions before this time | |
| afterTime | No | Only return transactions after this time | |
| minRound | No | Only return transactions after this round | |
| maxRound | No | Only return transactions before this round | |
| address | No | Filter by account address | |
| addressRole | No | Filter by address role (sender or receiver) | |
| txType | No | Filter by transaction type | |
| assetId | No | Filter by asset ID | |
| applicationId | No | Filter by application ID | |
| currencyGreaterThan | No | Filter by minimum amount | |
| currencyLessThan | No | Filter by maximum amount | |
| round | No | Filter by specific round | |
| nextToken | No | Token for retrieving the next page of results | |
| network | No | Algorand network to use (default: mainnet) | |
| itemsPerPage | No | Number of items per page for paginated responses (default: 10) |