Activations

Get activations

get

Returns a list of activation operations.

Query parameters
accountone of | nullableOptional

Filters activations by account. Allowed fields for .eqx mode: none.

levelone of | nullableOptional

Filters activations by level.

timestampone of | nullableOptional

Filters activations 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 activations by specified field. Supported fields: id (default), level, balance.

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
Responses
application/json
all of[]Optional
get
GET /v1/operations/activations HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:21:12.840Z",
    "block": "text",
    "hash": "text",
    "account": {
      "alias": "text",
      "address": "text"
    },
    "balance": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]

Get activation by hash

get

Returns an activation 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
Responses
application/json
all of[]Optional
get
GET /v1/operations/activations/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:21:12.840Z",
    "block": "text",
    "hash": "text",
    "account": {
      "alias": "text",
      "address": "text"
    },
    "balance": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]