Collections

Get NFT collections

get

Get NFT collections by specified filters

Authorizations
Query parameters
collection_addressanyOptional

Collection address in any form. Max: 1024.

owner_addressanyOptional

Address of collection owner in any form. Max: 1024.

limitanyOptional

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

offsetanyOptional

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

Responses
application/json
objectOptional
get
GET /api/v3/nft/collections 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_collections": [
    {
      "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"
    }
  ]
}