curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/transactions{
"transactions": [
{
"hash": "<string>",
"lt": "<string>",
"account": "<string>",
"now": 123,
"origStatus": "<string>",
"endStatus": "<string>",
"totalFees": "<string>"
}
]
}Retrieves a list of transactions from the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/transactions{
"transactions": [
{
"hash": "<string>",
"lt": "<string>",
"account": "<string>",
"now": 123,
"origStatus": "<string>",
"endStatus": "<string>",
"totalFees": "<string>"
}
]
}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.
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) or desc (descending). Default: desc.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.transactions endpoint is useful for various applications that need to monitor or analyze transaction activity on the TON blockchain:
The maximum number of transactions to return
The number of transactions to skip before starting to return results
The sorting order of the transactions
asc, desc Successful response
Show child attributes
Was this page helpful?