Double endorsing

Get double endorsing

get

Returns a list of double endorsing operations.

Query parameters
anyofone of | nullableOptional

Filters double endorsing operations 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 double endorsing operations by accuser. Allowed fields for .eqx mode: offender.

offenderone of | nullableOptional

Filters double endorsing operations by offender. Allowed fields for .eqx mode: accuser.

levelone of | nullableOptional

Filters double endorsing operations by level.

timestampone of | nullableOptional

Filters double endorsing 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 double endorsing operations 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_endorsing HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-06-27T03:53:20.008Z",
    "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,
    "accuserRewards": 1,
    "offenderLostDeposits": 1,
    "offenderLostRewards": 1,
    "offenderLostFees": 1
  }
]

Get double endorsing by hash

get

Returns a double endorsing 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_endorsing/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-06-27T03:53:20.008Z",
    "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,
    "accuserRewards": 1,
    "offenderLostDeposits": 1,
    "offenderLostRewards": 1,
    "offenderLostFees": 1
  }
]