Nonce revelations

Get nonce revelations

get

Returns a list of seed nonce revelation operations.

Query parameters
anyofone of | nullableOptional

Filters nonce revelation operations by any of the specified fields. Example: anyof.baker.sender=tz1... will return operations where baker OR sender is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.

bakerone of | nullableOptional

Filters nonce revelation operations by baker. Allowed fields for .eqx mode: sender.

senderone of | nullableOptional

Filters nonce revelation operations by sender. Allowed fields for .eqx mode: baker.

levelone of | nullableOptional

Filters nonce revelation operations by level.

revealedCycleone of | nullableOptional

Filters by cycle for which the nonce was revealed.

timestampone of | nullableOptional

Filters nonce revelation operations by timestamp.

selectone of | nullableOptional

Specify comma-separated list of fields to include into response or leave it undefined to return full object. If you select single field, response will be an array of values in both .fields and .values modes.

sortone of | nullableOptional

Sorts nonce revelation operations by specified field. Supported fields: id (default), level, revealedLevel.

offsetone of | nullableOptional

Specifies which or how many items should be skipped

limitinteger · int32 · max: 10000Optional

Maximum number of items to return

Default: 100
quoteone ofOptional

Comma-separated list of ticker symbols to inject historical prices into response

Default: None
Responses
application/json
all of[]Optional
get
GET /v1/operations/nonce_revelations HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:37:31.305Z",
    "block": "text",
    "hash": "text",
    "baker": {
      "alias": "text",
      "address": "text"
    },
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "revealedLevel": 1,
    "revealedCycle": 1,
    "nonce": "text",
    "rewardLiquid": 1,
    "rewardStakedOwn": 1,
    "rewardStakedShared": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    },
    "reward": 1,
    "bakerRewards": 1
  }
]

Get nonce revelation by hash

get

Returns a seed nonce revelation operation with specified hash.

Path parameters
hashstringRequired

Operation hash

Query parameters
quoteone ofOptional

Comma-separated list of ticker symbols to inject historical prices into response

Default: None
Responses
application/json
all of[]Optional
get
GET /v1/operations/nonce_revelations/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:37:31.305Z",
    "block": "text",
    "hash": "text",
    "baker": {
      "alias": "text",
      "address": "text"
    },
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "revealedLevel": 1,
    "revealedCycle": 1,
    "nonce": "text",
    "rewardLiquid": 1,
    "rewardStakedOwn": 1,
    "rewardStakedShared": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    },
    "reward": 1,
    "bakerRewards": 1
  }
]