Double baking

Get double baking

get

Returns a list of double baking operations.

Query parameters
anyofone of | nullableOptional

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

offenderone of | nullableOptional

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

levelone of | nullableOptional

Filters double baking operations by level.

timestampone of | nullableOptional

Filters double baking 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 baking 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_baking HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-18T02:25:23.182Z",
    "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 baking by hash

get

Returns a double baking 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_baking/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-18T02:25:23.182Z",
    "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
  }
]