Get Transactions
TON node API
transactions | TON v3
The transactions endpoint retrieves a list of transactions from the TON blockchain. Available on TON v3 via Chainstack JSON-RPC nodes.
GET
Get Transactions
The
transactions endpoint retrieves a list of transactions from the TON blockchain. This endpoint allows you to fetch recent transactions and provides options for pagination and sorting.
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 or archive by block ageThis method is billed as archive (2 RUs) when the requested block is 128 or more seqno behind the tip, and full (1 RU) otherwise. See Request units — TON method scope.
Parameters
limit(integer, optional) — The maximum number of transactions to return. Default:128.offset(integer, optional) — The number of transactions to skip before starting to return results. Default:0.sort(string, optional) — The sorting order of the transactions. Possible values:asc(ascending) ordesc(descending). Default:desc.
Response
transactions(array) — An array of transaction objects, each containing:hash(string) — The transaction hash.lt(string) — The logical time of the transaction.account(string) — The account address involved in the transaction.now(integer) — The timestamp of the transaction.origStatus(string) — The original status of the account.endStatus(string) — The end status of the account.totalFees(string) — The total fees for the transaction.
Use case
Thetransactions endpoint is useful for various applications that need to monitor or analyze transaction activity on the TON blockchain:
- Block explorers can use this to display recent transactions and allow users to browse through transaction history.
- Wallet applications can fetch and display recent transactions for a user’s account.
- Analytics tools can use this endpoint to gather data on transaction volumes, fees, and patterns over time.
- Monitoring systems can track specific types of transactions or activity from particular accounts.
Query Parameters
The maximum number of transactions to return
The number of transactions to skip before starting to return results
The sorting order of the transactions
Available options:
asc, desc Response
200 - application/json
Successful response
Last modified on June 4, 2026