Transfer ticket

Get transfer ticket

get

Returns a list of transfer ticket operations.

Query parameters
anyofone of | nullableOptional

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

senderone of | nullableOptional

Filters by sender. Allowed fields for .eqx mode: none.

targetone of | nullableOptional

Filters by target. Allowed fields for .eqx mode: none.

idone of | nullableOptional

Filters by id.

ticketerone of | nullableOptional

Filters by ticketer. Allowed fields for .eqx mode: none.

levelone of | nullableOptional

Filters by level.

timestampone of | nullableOptional

Filters by timestamp.

statusone of | nullableOptional

Filters by 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 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
michelineone ofOptional

Format of the content value: 0 - JSON, 1 - JSON string, 2 - raw micheline, 3 - raw micheline string

Default: Json
string · enumOptionalPossible values:
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/transfer_ticket HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T05:07:24.968Z",
    "block": "text",
    "hash": "text",
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "counter": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "storageUsed": 1,
    "bakerFee": 1,
    "storageFee": 1,
    "target": {
      "alias": "text",
      "address": "text"
    },
    "ticketer": {
      "alias": "text",
      "address": "text"
    },
    "amount": "text",
    "entrypoint": "text",
    "ticketTransfersCount": 1,
    "contentType": null,
    "content": null,
    "status": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]

Get transfer ticket by hash

get

Returns transfer ticket operation with specified hash.

Path parameters
hashstringRequired

Operation hash

Query parameters
michelineone ofOptional

Format of the content value: 0 - JSON, 1 - JSON string, 2 - raw micheline, 3 - raw micheline string

Default: Json
string · enumOptionalPossible values:
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/transfer_ticket/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T05:07:24.968Z",
    "block": "text",
    "hash": "text",
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "counter": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "storageUsed": 1,
    "bakerFee": 1,
    "storageFee": 1,
    "target": {
      "alias": "text",
      "address": "text"
    },
    "ticketer": {
      "alias": "text",
      "address": "text"
    },
    "amount": "text",
    "entrypoint": "text",
    "ticketTransfersCount": 1,
    "contentType": null,
    "content": null,
    "status": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]