Commitments

Get smart rollup commitments

get

Returns a list of smart rollup commitments.

Query parameters
idone of | nullableOptional

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

initiatorone of | nullableOptional

Filter by initiator (an account published the commitment first).
Click on the parameter to expand more details.

rollupone of | nullableOptional

Filter by smart rollup.
Click on the parameter to expand more details.

inboxLevelone of | nullableOptional

Filter by inbox level.
Click on the parameter to expand more details.

hashone of | nullableOptional

Filter by commitment hash.
Click on the parameter to expand more details.

firstLevelone of | nullableOptional

Filter by level of the block, where the commitment was first seen.
Click on the parameter to expand more details.

firstTimeone of | nullableOptional

Filter by timestamp of the block, where the commitment was first seen.
Click on the parameter to expand more details.

lastLevelone of | nullableOptional

Filter by level of the block, where the commitment was last seen.
Click on the parameter to expand more details.

lastTimeone of | nullableOptional

Filter by timestamp of the block, where the commitment was last seen.
Click on the parameter to expand more details.

statusone of | nullableOptional

Filter by commitment status (pending, cemented, executed, refuted, or orphan).
Click on the parameter to expand more details.

predecessor.idone of | nullableOptional

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

predecessor.hashone of | nullableOptional

Filter by commitment hash.
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/smart_rollups/commitments HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "id": 1,
    "rollup": {
      "alias": "text",
      "address": "text"
    },
    "initiator": {
      "alias": "text",
      "address": "text"
    },
    "inboxLevel": 1,
    "state": "text",
    "hash": "text",
    "ticks": 1,
    "firstLevel": 1,
    "firstTime": "2025-07-13T17:35:45.338Z",
    "lastLevel": 1,
    "lastTime": "2025-07-13T17:35:45.338Z",
    "stakers": 1,
    "activeStakers": 1,
    "successors": 1,
    "status": "text",
    "predecessor": {
      "id": 1,
      "initiator": {
        "alias": "text",
        "address": "text"
      },
      "inboxLevel": 1,
      "state": "text",
      "hash": "text",
      "ticks": 1,
      "firstLevel": 1,
      "firstTime": "2025-07-13T17:35:45.338Z"
    }
  }
]