Items

Get NFT items

get

Get NFT items by specified filters

Authorizations
Query parameters
addressstring[]Optional

NFT item address in any form. Max: 1000.

owner_addressstring[]Optional

Address of NFT item owner in any form. Max: 1000.

collection_addressstring[]Optional

Collection address in any form.

indexstring[]Optional

Index of item for given collection. Max: 1000.

limitinteger · min: 1 · max: 1000Optional

Limit number of queried rows. Use with offset to batch read.

offsetintegerOptional

Skip first N rows. Use with limit to batch read.

Responses
200
OK
application/json
get
GET /api/v3/nft/items HTTP/1.1
Host: ton-index.nownodes.io
X-Api-Key: YOUR_API_KEY
Accept: */*
{
  "address_book": {
    "ANY_ADDITIONAL_PROPERTY": {
      "domain": "text",
      "user_friendly": "text"
    }
  },
  "metadata": {
    "ANY_ADDITIONAL_PROPERTY": {
      "is_indexed": true,
      "token_info": [
        {
          "description": "text",
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "image": "text",
          "name": "text",
          "symbol": "text",
          "type": "text"
        }
      ]
    }
  },
  "nft_items": [
    {
      "address": "text",
      "code_hash": "text",
      "collection": {
        "address": "text",
        "code_hash": "text",
        "collection_content": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "data_hash": "text",
        "last_transaction_lt": "0",
        "next_item_index": "text",
        "owner_address": "text"
      },
      "collection_address": "text",
      "content": {
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "data_hash": "text",
      "index": "text",
      "init": true,
      "last_transaction_lt": "0",
      "owner_address": "text"
    }
  ]
}