wallet/gettransactionlistfrompending
Transaction operations
wallet/gettransactionlistfrompending | TRON
TRON API method that retrieves a list of all pending transactions currently in the mempool. wallet/gettransactionlistfrompending on TRON via Chainstack.
GET
wallet/gettransactionlistfrompending
TRON API method that retrieves a list of all pending transactions currently in the mempool. This allows applications to monitor unconfirmed transactions awaiting inclusion in a block.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
This method requires no parameters. It returns all pending transactions in the current mempool.Response
transactions— array of pending transaction objects, each containing:txID— unique transaction identifier hashraw_data— raw transaction data including:contract— array with transaction contract detailsref_block_bytes— reference block bytes for validationref_block_hash— hash of the reference blockexpiration— transaction expiration timestamptimestamp— transaction creation timestampfee_limit— maximum fee allowed for this transaction
signature— array of transaction signaturesret— transaction result information (if available)
Use case
Thewallet/gettransactionlistfrompending method is used for:
- Monitoring pending transactions in real-time for transaction status tracking.
- Building transaction pool analytics and network congestion monitoring tools.
- Implementing custom mempool explorers and pending transaction dashboards.
- Analyzing transaction patterns and fee structures before confirmation.
- Creating alerts for specific pending transactions or transaction types.
The pending transaction pool is dynamic and constantly changing as transactions get confirmed or dropped. The response represents a snapshot at the time of the request and may vary between consecutive calls.
Response
200 - application/json
List of all pending transactions
Array of pending transaction objects
Last modified on May 18, 2026