Retrieves a list of transactions related to a specific message
transactionsByMessage
endpoint retrieves a list of transactions related to a specific message in the TON blockchain. This endpoint allows you to fetch transactions associated with a particular message hash and provides options for pagination.
direction
(string, required) — The direction of the message. Possible values: in
or out
. Default: out
.msg_hash
(string, required) — The hash of the message. Example: po4/F9OgHrJGTUCtobScZrW/gOwVPj7s3f40HV32EII=
.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
.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.transactionsByMessage
endpoint is useful for various applications that need to track or analyze specific messages and their related transactions:
The direction of the message (in or out)
in
, out
The hash of the message
The maximum number of transactions to return
The number of transactions to skip before starting to return results
Successful response
The response is of type object
.