get_account_transactions
Retrieve transaction history for any TRON account, covering TRX transfers, contract calls, and more. Supports pagination, time-range, and confirmation filters for targeted queries.
Instructions
Get transaction history for an account from TronGrid indexed data. Returns all transaction types (TRX transfers, contract calls, etc.). Supports pagination via limit + fingerprint. Default 20 results, max 200 per page.
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 |