Vdf revelations

Get vdf revelations

get

Returns a list of vdf revelation operations.

Query parameters
bakerone of | nullableOptional

Filters by baker. Allowed fields for .eqx mode: none.

levelone of | nullableOptional

Filters by level.

cycleone of | nullableOptional

Filters by cycle in which the operation was included.

timestampone of | nullableOptional

Filters 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 by specified field. Supported fields: id (default), level.

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
string · enumOptionalPossible values:
Responses
200Success
application/json
get
GET /v1/operations/vdf_revelations HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T06:18:50.572Z",
    "block": "text",
    "hash": "text",
    "baker": {
      "alias": "text",
      "address": "text"
    },
    "cycle": 1,
    "solution": "text",
    "proof": "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
  }
]

Get vdf revelation by hash

get

Returns a vdf 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
string · enumOptionalPossible values:
Responses
200Success
application/json
get
GET /v1/operations/vdf_revelations/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T06:18:50.572Z",
    "block": "text",
    "hash": "text",
    "baker": {
      "alias": "text",
      "address": "text"
    },
    "cycle": 1,
    "solution": "text",
    "proof": "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
  }
]