sui_getEvents

Returns all events emitted during the execution of a transaction, identified by its digest.

Path parameters

apiKeystringRequired

Request

This endpoint expects an object.
transaction_digeststringRequired

Digest (ID) of the transaction to retrieve events from.

Response

A list of events emitted by the transaction.
idobject or null
Unique identifier for the event within the transaction.
packageIdstring or null
ID of the Move package emitting the event.
transactionModulestring or null
Name of the Move module that emitted the event.
senderstring or null
Address of the sender that triggered the event.
typestring or null

Fully qualified name of the event type (e.g., package::module::EventName).

parsedJsonobject or null
Parsed JSON contents of the event payload.
bcsEncodingstring or null

Encoding format used for the binary canonical serialization (BCS) payload.

bcsstring or null

Base64-encoded BCS data representing the raw event.