Transfers

Get ticket transfers

get

Returns a list of ticket transfers.

Query parameters
idone of | nullableOptional

Filter by internal TzKT id.
Click on the parameter to expand more details.

levelone of | nullableOptional

Filter by level of the block where the transfer was made.
Click on the parameter to expand more details.

timestampone of | nullableOptional

Filter by timestamp (ISO 8601) of the block where the transfer was made.
Click on the parameter to expand more details.

ticket.idone of | nullableOptional

Filter by internal TzKT id. Click on the parameter to expand more details.

ticket.ticketerone of | nullableOptional

Filter by ticketer address.
Click on the parameter to expand more details.

ticket.rawTypeone of | nullableOptional

Filter by ticket content type in Micheline format.
Click on the parameter to expand more details.

ticket.rawContentone of | nullableOptional

Filter by ticket content in Micheline format.
Click on the parameter to expand more details.

ticket.contentone of | nullableOptional

Filter by ticket content in JSON format.
Note, this parameter supports the following format: content{.path?}{.mode?}=..., so you can specify a path to a particular field to filter by (for example, ?content.color.in=red,green).
Click on the parameter to expand more details.

ticket.typeHashone of | nullableOptional

Filter by 32-bit hash of ticket content type.
Click on the parameter to expand more details.

ticket.contentHashone of | nullableOptional

Filter by 32-bit hash of ticket content.
Click on the parameter to expand more details.

anyofone of | nullableOptional

Filter by any of the specified fields (from or to). Example: anyof.from.to=tz1... will return transfers where from OR to is equal to the specified value. This parameter is useful when you need to get both incoming and outgoing transfers of the account at once.
Click on the parameter to expand more details.

fromone of | nullableOptional

Filter by sender address.
Click on the parameter to expand more details.

toone of | nullableOptional

Filter by recepient address.
Click on the parameter to expand more details.

amountone of | nullableOptional

Filter by amount.
Click on the parameter to expand more details.

transactionIdone of | nullableOptional

Filter by id of the transaction, caused the ticket transfer.
Click on the parameter to expand more details.

transferTicketIdone of | nullableOptional

Filter by id of the transfer_ticket operation, caused the ticket transfer.
Click on the parameter to expand more details.

smartRollupExecuteIdone of | nullableOptional

Filter by id of the smart_rollup_execute operation, caused the ticket transfer.
Click on the parameter to expand more details.

sortone of | nullableOptional

Sorts items (asc or desc) by the specified field. You can see what fields can be used for sorting in the response description, below.
Click on the parameter to expand more details.

offsetone of | nullableOptional

Specifies which or how many items should be skipped.
Click on the parameter to expand more details.

limitinteger · int32 · max: 10000Optional

Maximum number of items to return.

selectone of | nullableOptional

Specify a comma-separated list of fields to include into response or leave it undefined to get default set of fields. This parameter accepts values of the following format: {field}{path?}{as alias?}, so you can do deep selection (for example, ?select=balance,token.metadata.symbol as token,...).
Note, if you select just one field, the response will be flatten into a simple array of values.
Click on the parameter to expand the details.

Responses
200Success
application/json
get
GET /v1/tickets/transfers HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-13T22:20:18.913Z",
    "ticket": {
      "id": 1,
      "ticketer": {
        "alias": "text",
        "address": "text"
      },
      "rawType": {
        "type": 0
      },
      "rawContent": {
        "type": 0
      },
      "content": null,
      "typeHash": 1,
      "contentHash": 1,
      "totalSupply": "text"
    },
    "from": {
      "alias": "text",
      "address": "text"
    },
    "to": {
      "alias": "text",
      "address": "text"
    },
    "amount": "text",
    "transactionId": 1,
    "transferTicketId": 1,
    "smartRollupExecuteId": 1
  }
]