curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/pendingTransactions{
"transactions": [
{
"account": "<string>",
"hash": "<string>",
"lt": 123,
"now": 123,
"mc_block_seqno": 123,
"trace_id": "<string>"
}
],
"address_book": {}
}Get transactions that are pending finalization
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/pendingTransactions{
"transactions": [
{
"account": "<string>",
"hash": "<string>",
"lt": 123,
"now": 123,
"mc_block_seqno": 123,
"trace_id": "<string>"
}
],
"address_book": {}
}pendingTransactions 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.
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.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.
pendingTransactions endpoint is useful for monitoring real-time transaction status:
curl -X GET \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/pendingTransactions?limit=5' \
-H 'accept: application/json'
Filter by account address
Maximum number of transactions to return
Number of transactions to skip
Successful response
Address book mapping
Was this page helpful?