curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/events{
"events": [
{
"trace_id": "<string>",
"external_hash": "<string>",
"mc_seqno_start": "<string>",
"mc_seqno_end": "<string>",
"start_lt": "<string>",
"start_utime": 123,
"end_lt": "<string>",
"end_utime": 123,
"trace_info": {},
"actions": "<array>",
"is_incomplete": true
}
],
"address_book": {}
}Query blockchain events with decoded actions
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/events{
"events": [
{
"trace_id": "<string>",
"external_hash": "<string>",
"mc_seqno_start": "<string>",
"mc_seqno_end": "<string>",
"start_lt": "<string>",
"start_utime": 123,
"end_lt": "<string>",
"end_utime": 123,
"trace_info": {},
"actions": "<array>",
"is_incomplete": true
}
],
"address_book": {}
}events endpoint queries blockchain events, which combine traces with their decoded actions. Events provide a complete view of what happened in a transaction flow, including all resulting actions.
account (string, optional) — Filter by account address.start_utime (integer, optional) — Start of time range (unix timestamp).end_utime (integer, optional) — End of time range (unix timestamp).limit (integer, optional) — Maximum number of events to return. Default: 10.offset (integer, optional) — Number of events to skip for pagination. Default: 0.sort (string, optional) — Sort order: asc or desc. Default: desc.events (array) — Array of event objects:
trace_id (string) — Trace ID.external_hash (string) — Hash of the external message.mc_seqno_start (string) — Start masterchain sequence number.mc_seqno_end (string) — End masterchain sequence number.start_lt (string) — Start logical time.start_utime (integer) — Start unix timestamp.end_lt (string) — End logical time.end_utime (integer) — End unix timestamp.trace_info (object) — Trace state and statistics.actions (array) — Decoded actions from the event.is_incomplete (boolean) — Whether the event is still processing.address_book (object) — Address book mapping.
events endpoint is useful for applications that need combined trace and action data:
curl -X GET \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/events?limit=5' \
-H 'accept: application/json'
Filter by account address
Start of time range (unix timestamp)
End of time range (unix timestamp)
Maximum number of events to return
Number of events to skip
Sort order
asc, desc Successful response
Show child attributes
Trace ID
External message hash
Start masterchain sequence number
End masterchain sequence number
Start logical time
Start unix timestamp
End logical time
End unix timestamp
Trace information
Decoded actions
Whether event is incomplete
Address book mapping
Was this page helpful?