Smart rollups

Get smart rollups

get

Returns a list of smart rollups.

Query parameters
idone of | nullableOptional

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

addressone of | nullableOptional

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

creatorone of | nullableOptional

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

firstActivityone of | nullableOptional

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

firstActivityTimeone of | nullableOptional

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

lastActivityone of | nullableOptional

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

lastActivityTimeone of | nullableOptional

Filter by timestamp of the block, where the rollup was last seen.
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 HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "address": "text",
    "alias": "text",
    "creator": {
      "alias": "text",
      "address": "text"
    },
    "pvmKind": "text",
    "genesisCommitment": "text",
    "lastCommitment": "text",
    "inboxLevel": 1,
    "totalStakers": 1,
    "activeStakers": 1,
    "executedCommitments": 1,
    "cementedCommitments": 1,
    "pendingCommitments": 1,
    "refutedCommitments": 1,
    "orphanCommitments": 1,
    "smartRollupBonds": 1,
    "activeTokensCount": 1,
    "tokenBalancesCount": 1,
    "tokenTransfersCount": 1,
    "activeTicketsCount": 1,
    "ticketBalancesCount": 1,
    "ticketTransfersCount": 1,
    "numTransactions": 1,
    "transferTicketCount": 1,
    "smartRollupCementCount": 1,
    "smartRollupExecuteCount": 1,
    "smartRollupOriginateCount": 1,
    "smartRollupPublishCount": 1,
    "smartRollupRecoverBondCount": 1,
    "smartRollupRefuteCount": 1,
    "refutationGamesCount": 1,
    "activeRefutationGamesCount": 1,
    "firstActivity": 1,
    "firstActivityTime": "2025-07-14T05:10:15.370Z",
    "lastActivity": 1,
    "lastActivityTime": "2025-07-14T05:10:15.370Z",
    "extras": null
  }
]

Get smart rollup by address

get

Returns a smart rollup with the specified address.

Path parameters
addressstringRequired

Smart rollup address

Responses
200Success
application/json
Responseall of
and
get
GET /v1/smart_rollups/{address} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
{
  "type": "text",
  "id": 1,
  "address": "text",
  "alias": "text",
  "creator": {
    "alias": "text",
    "address": "text"
  },
  "pvmKind": "text",
  "genesisCommitment": "text",
  "lastCommitment": "text",
  "inboxLevel": 1,
  "totalStakers": 1,
  "activeStakers": 1,
  "executedCommitments": 1,
  "cementedCommitments": 1,
  "pendingCommitments": 1,
  "refutedCommitments": 1,
  "orphanCommitments": 1,
  "smartRollupBonds": 1,
  "activeTokensCount": 1,
  "tokenBalancesCount": 1,
  "tokenTransfersCount": 1,
  "activeTicketsCount": 1,
  "ticketBalancesCount": 1,
  "ticketTransfersCount": 1,
  "numTransactions": 1,
  "transferTicketCount": 1,
  "smartRollupCementCount": 1,
  "smartRollupExecuteCount": 1,
  "smartRollupOriginateCount": 1,
  "smartRollupPublishCount": 1,
  "smartRollupRecoverBondCount": 1,
  "smartRollupRefuteCount": 1,
  "refutationGamesCount": 1,
  "activeRefutationGamesCount": 1,
  "firstActivity": 1,
  "firstActivityTime": "2025-07-14T05:10:15.370Z",
  "lastActivity": 1,
  "lastActivityTime": "2025-07-14T05:10:15.370Z",
  "extras": null
}