Events

Get contract events

get

Returns a list of contract events.

Query parameters
idone of | nullableOptional

Filter by internal TzKT id.
Click on the parameter to expand more details.

levelone of | nullableOptional

Filter by level of the block where the event was emitted.
Click on the parameter to expand more details.

timestampone of | nullableOptional

Filter by timestamp (ISO 8601) of the block where the event was emitted.
Click on the parameter to expand more details.

contractone of | nullableOptional

Filter by contract address.
Click on the parameter to expand more details.

codeHashone of | nullableOptional

Filter by hash of the code of the contract emitted the event.
Click on the parameter to expand more details.

tagone of | nullableOptional

Filter by event tag.
Click on the parameter to expand more details.

payloadone of | nullableOptional

Filter by payload.
Note, this parameter supports the following format: payload{.path?}{.mode?}=..., so you can specify a path to a particular field to filter by (for example, ?payload.foo.bar.in=1,2,3).
Click on the parameter to expand more details.

transactionIdone of | nullableOptional

Filter by id of the transaction, in which the event was emitted.
Click on the parameter to expand more details.

sortone of | nullableOptional

Sorts items (asc or desc) by the specified field. You can see what fields can be used for sorting in the response description, below.
Click on the parameter to expand more details.

offsetone of | nullableOptional

Specifies which or how many items should be skipped.
Click on the parameter to expand more details.

limitinteger · int32 · max: 10000Optional

Maximum number of items to return.

selectone of | nullableOptional

Specify a comma-separated list of fields to include into response or leave it undefined to get default set of fields. This parameter accepts values of the following format: {field}{path?}{as alias?}, so you can do deep selection (for example, ?select=balance,token.metadata.symbol as token,...).
Note, if you select just one field, the response will be flatten into a simple array of values.
Click on the parameter to expand the details.

Responses
200Success
application/json
get
GET /v1/contracts/events HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "id": 1,
    "level": 1,
    "timestamp": "2025-06-23T17:36:08.983Z",
    "contract": {
      "alias": "text",
      "address": "text"
    },
    "codeHash": 1,
    "tag": "text",
    "payload": null,
    "transactionId": 1,
    "type": null,
    "rawPayload": null
  }
]

Revision created

GitBook: No commit message