Get Pending Transactions
TON node API
pendingTransactions | TON v3
The pendingTransactions endpoint retrieves transactions that are pending finalization in the TON blockchain. TON v3 via Chainstack.
GET
Get Pending Transactions
Pending Transactions
ThependingTransactions endpoint retrieves transactions that are pending finalization in the TON blockchain. These are transactions that have been included in a block but may not yet be fully confirmed.
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.
TON billing: full (1 RU)This method is always billed as full. See Request units — TON method scope.
Parameters
account(string, optional) — Filter by account address.limit(integer, optional) — Maximum number of transactions to return. Default:10.offset(integer, optional) — Number of transactions to skip for pagination. Default:0.
Response
-
transactions(array) — Array of pending transaction objects:account(string) — Account address.hash(string) — Transaction hash.lt(integer) — Logical time.now(integer) — Unix timestamp.mc_block_seqno(integer) — Masterchain block sequence number.trace_id(string) — Associated trace ID.
-
address_book(object) — Address book mapping.
Use case
ThependingTransactions endpoint is useful for monitoring real-time transaction status:
- Wallet applications showing recently submitted transactions before full confirmation.
- Trading bots tracking order execution in real-time.
- Payment systems providing instant feedback on transaction status.
- Block explorers showing live transaction feeds.
- Monitoring systems tracking specific account activity.
Last modified on June 4, 2026