get_account_trc20_transactions
Retrieve TRC20 token transfer history for any TRON account, including token details and values, with pagination and filters for time, contract, and confirmation status.
Instructions
Get TRC20 token transfer history for an account from TronGrid indexed data. Returns token transfer details including token info (name, symbol, decimals) and human-readable values. 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 | |
| contractAddress | No | Filter by specific TRC20 token contract address | |
| onlyUnconfirmed | No | Only return unconfirmed transactions |