Delegations

Get delegations

get

Returns a list of delegation operations.

Query parameters
anyofone of | nullableOptional

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

initiatorone of | nullableOptional

Filters delegations by initiator. Allowed fields for .eqx mode: prevDelegate, newDelegate.

senderone of | nullableOptional

Filters delegations by sender. Allowed fields for .eqx mode: prevDelegate, newDelegate.

prevDelegateone of | nullableOptional

Filters delegations by prev delegate. Allowed fields for .eqx mode: initiator, sender, newDelegate.

newDelegateone of | nullableOptional

Filters delegations by new delegate. Allowed fields for .eqx mode: initiator, sender, prevDelegate.

levelone of | nullableOptional

Filters delegations by level.

timestampone of | nullableOptional

Filters delegations by timestamp.

senderCodeHashone of | nullableOptional

Filters by senderCodeHash.

statusone of | nullableOptional

Filters delegations by operation status (applied, failed, backtracked, skipped).

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

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/delegations HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-05-05T21:34:39.304Z",
    "block": "text",
    "hash": "text",
    "counter": 1,
    "initiator": {
      "alias": "text",
      "address": "text"
    },
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "senderCodeHash": 1,
    "nonce": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "bakerFee": 1,
    "amount": 1,
    "unstakedPseudotokens": 1,
    "unstakedBalance": 1,
    "unstakedRewards": 1,
    "prevDelegate": {
      "alias": "text",
      "address": "text"
    },
    "newDelegate": {
      "alias": "text",
      "address": "text"
    },
    "status": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]

Get delegation by hash

get

Returns a delegation 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/delegations/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-05-05T21:34:39.304Z",
    "block": "text",
    "hash": "text",
    "counter": 1,
    "initiator": {
      "alias": "text",
      "address": "text"
    },
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "senderCodeHash": 1,
    "nonce": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "bakerFee": 1,
    "amount": 1,
    "unstakedPseudotokens": 1,
    "unstakedBalance": 1,
    "unstakedRewards": 1,
    "prevDelegate": {
      "alias": "text",
      "address": "text"
    },
    "newDelegate": {
      "alias": "text",
      "address": "text"
    },
    "status": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]