Same

Get same contracts

get

Returns contracts which have the same script as the specified one. Note, contract scripts are compared by 32-bit hash, so in very rare cases there may be collisions.

Path parameters
addressstringRequired

Contract address (starting with KT)

Query parameters
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.

includeStoragebooleanOptional

Specifies whether to include contract storage value in response.

Default: false
Responses
200Success
application/json
get
GET /v1/contracts/{address}/same HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "address": "text",
    "kind": "text",
    "tzips": [
      "text"
    ],
    "alias": "text",
    "balance": 1,
    "creator": {
      "alias": "text",
      "address": "text"
    },
    "manager": {
      "alias": "text",
      "address": "text",
      "publicKey": "text"
    },
    "delegate": {
      "alias": "text",
      "address": "text",
      "active": true
    },
    "delegationLevel": 1,
    "delegationTime": "2025-06-27T03:17:03.773Z",
    "numContracts": 1,
    "tokensCount": 1,
    "activeTokensCount": 1,
    "tokenBalancesCount": 1,
    "tokenTransfersCount": 1,
    "ticketsCount": 1,
    "activeTicketsCount": 1,
    "ticketBalancesCount": 1,
    "ticketTransfersCount": 1,
    "numDelegations": 1,
    "numOriginations": 1,
    "numTransactions": 1,
    "numReveals": 1,
    "numMigrations": 1,
    "transferTicketCount": 1,
    "increasePaidStorageCount": 1,
    "eventsCount": 1,
    "firstActivity": 1,
    "firstActivityTime": "2025-06-27T03:17:03.773Z",
    "lastActivity": 1,
    "lastActivityTime": "2025-06-27T03:17:03.773Z",
    "typeHash": 1,
    "codeHash": 1,
    "metadata": null,
    "extras": null,
    "storage": null
  }
]