Revelation penalties

Get revelation penalties

get

Returns a list of revelation penalty operations (synthetic type).

Query parameters
idone of | nullableOptional

Filters operations by internal TzKT id.

bakerone of | nullableOptional

Filters revelation penalty operations by baker. Allowed fields for .eqx mode: none.

levelone of | nullableOptional

Filters revelation penalty operations by level.

timestampone of | nullableOptional

Filters revelation penalty 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 revelation penalty operations 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/revelation_penalties HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T01:38:20.236Z",
    "block": "text",
    "baker": {
      "alias": "text",
      "address": "text"
    },
    "missedLevel": 1,
    "loss": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    },
    "lostReward": 1,
    "lostFees": 1
  }
]

Get revelation penalty by id

get

Returns revelation penalty operation with specified id.

Path parameters
idinteger · int64Required

Operation id

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
Responseall of
and
get
GET /v1/operations/revelation_penalties/{id} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
{
  "type": "text",
  "id": 1,
  "level": 1,
  "timestamp": "2025-07-14T01:38:20.236Z",
  "block": "text",
  "baker": {
    "alias": "text",
    "address": "text"
  },
  "missedLevel": 1,
  "loss": 1,
  "quote": {
    "btc": 1,
    "eur": 1,
    "usd": 1,
    "cny": 1,
    "jpy": 1,
    "krw": 1,
    "eth": 1,
    "gbp": 1
  },
  "lostReward": 1,
  "lostFees": 1
}