curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/messages
{
"messages": [
{
"hash": "<string>",
"source": "<string>",
"destination": "<string>",
"value": "<string>",
"fwd_fee": "<string>",
"ihr_fee": "<string>",
"created_lt": "<string>",
"body_hash": "<string>"
}
]
}
Retrieves a list of messages from the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/messages
{
"messages": [
{
"hash": "<string>",
"source": "<string>",
"destination": "<string>",
"value": "<string>",
"fwd_fee": "<string>",
"ihr_fee": "<string>",
"created_lt": "<string>",
"body_hash": "<string>"
}
]
}
messages
endpoint retrieves a list of messages from the TON blockchain. This endpoint allows you to fetch recent messages and provides options for pagination.
limit
(integer, optional) — The maximum number of messages to return. Default: 128
.offset
(integer, optional) — The number of messages to skip before starting to return results. Default: 0
.messages
(array) — An array of message objects, each containing:
hash
(string) — The message hash.source
(string) — The source address of the message.destination
(string) — The destination address of the message.value
(string) — The value transferred in the message.fwd_fee
(string) — The forward fee for the message.ihr_fee
(string) — The IHR (Instant Hypercube Routing) fee for the message.created_lt
(string) — The logical creation time of the message.body_hash
(string) — The hash of the message body.messages
endpoint is useful for various applications that need to monitor or analyze message activity on the TON blockchain:
The maximum number of messages to return
The number of messages to skip before starting to return results
Successful response
The response is of type object
.
Was this page helpful?