Double preendorsing

Get double preendorsing

get

Returns a list of double preendorsing operations.

Query parameters
anyofone of | nullableOptional

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

accuserone of | nullableOptional

Filters by accuser. Allowed fields for .eqx mode: offender.

offenderone of | nullableOptional

Filters by offender. Allowed fields for .eqx mode: accuser.

levelone of | nullableOptional

Filters by level.

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, accusedLevel, accuserRewards, offenderLostDeposits, offenderLostRewards, offenderLostFees.

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/double_preendorsing HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T04:46:32.128Z",
    "block": "text",
    "hash": "text",
    "accusedLevel": 1,
    "slashedLevel": 1,
    "accuser": {
      "alias": "text",
      "address": "text"
    },
    "reward": 1,
    "offender": {
      "alias": "text",
      "address": "text"
    },
    "lostStaked": 1,
    "lostUnstaked": 1,
    "lostExternalStaked": 1,
    "lostExternalUnstaked": 1,
    "roundingLoss": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    },
    "offenderLoss": 1,
    "accuserReward": 1
  }
]

Get double preendorsing by hash

get

Returns a double preendorsing 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/double_preendorsing/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T04:46:32.128Z",
    "block": "text",
    "hash": "text",
    "accusedLevel": 1,
    "slashedLevel": 1,
    "accuser": {
      "alias": "text",
      "address": "text"
    },
    "reward": 1,
    "offender": {
      "alias": "text",
      "address": "text"
    },
    "lostStaked": 1,
    "lostUnstaked": 1,
    "lostExternalStaked": 1,
    "lostExternalUnstaked": 1,
    "roundingLoss": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    },
    "offenderLoss": 1,
    "accuserReward": 1
  }
]