get_account_internal_transactions
Fetch internal transactions triggered by smart contract execution for a TRON account, with pagination and filter options for time and confirmation status.
Instructions
Get internal transactions (triggered by smart contract execution) for an account from TronGrid indexed data. Supports pagination via limit + fingerprint. Default 20, max 200.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max transactions per page (default 20, max 200) | |
| address | Yes | Account address (base58 T-address or hex 41-prefixed) | |
| network | No | Network name. Defaults to mainnet. | |
| orderBy | No | Sort field, e.g. 'block_timestamp,desc' | |
| fingerprint | No | Pagination token from previous response | |
| maxTimestamp | No | Filter: maximum block timestamp (ms) | |
| minTimestamp | No | Filter: minimum block timestamp (ms) | |
| onlyConfirmed | No | Only return confirmed transactions | |
| onlyUnconfirmed | No | Only return unconfirmed transactions |