Query raw Tron transactions: native TRX transfers, TRC-10 asset transfers, TriggerSmartContract calls by contract and method, or any contract type, with optional inline logs and internal transactions.
COMMON USER ASKS:
- Recent native TRX transfers
- USDT transfer calls in a block window
- TRX sent from one wallet
FIRST CHOICE FOR:
- native TRX transfers, TRC-10 transfers, and smart-contract calls on Tron
- who sent TRX to an address on Tron, or which wallets called a Tron contract
WHEN TO USE:
- You need raw Tron transaction records with sender, recipient, amount in TRX, fee, energy, and success.
- You want native TRX transfers to or from a wallet in a bounded window.
- You want calls to a Tron contract such as USDT filtered by method (transfer, approve) or caller.
- You want TRC-10 asset transfers by asset id.
DON'T USE:
- You need TRC-20 token events; those are logs, so use portal_tron_query_logs.
- You need an Ethereum-compatible network; use portal_evm_query_transactions.
EXAMPLES:
- Recent native TRX transfers: {"network":"tron-mainnet","timeframe":"5m","kind":"transfer","limit":20}
- USDT transfer calls in a block window: {"network":"tron-mainnet","from_block":84000000,"to_block":84000010,"contract_addresses":["TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"],"method":"transfer","limit":20}
- TRX sent from one wallet: {"network":"tron-mainnet","timeframe":"1h","kind":"transfer","from_addresses":["TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"],"limit":20}