Stakers

Get smart rollup stakers

Returns a list of smart rollup stakers.

GEThttps://xtz-index.nownodes.io/v1/smart_rollups/{address}/stakers
Path parameters
address*AddressParameter (object)

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

Query parameters
Response
Body
aliasnullable string

Account alias name (off-chain data).

addressnullable string

Account address (public key hash).

idinteger (int32)

Internal TzKT id.
[sortable]

bondStatusnullable string

Bond status (active, returned, or lost).

bondLevelinteger (int32)

Level of the block where the staker published his first commitment.
[sortable]

bondTimestring (date-time)

Timestamp of the block where the staker published his first commitment.

Request
const response = await fetch('https://xtz-index.nownodes.io/v1/smart_rollups/{address}/stakers', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "alias": "text",
    "address": "text",
    "bondStatus": "text",
    "bondTime": "2024-09-20T01:13:14.158Z"
  }
]