Skip to main content
GET
/
api
/
v3
/
nft
/
collections
List NFT collections
curl --request GET \
  --url https://toncenter.com/api/v3/nft/collections
{
  "address_book": {},
  "metadata": {},
  "nft_collections": [
    {
      "address": "<string>",
      "code_hash": "<string>",
      "collection_content": {},
      "data_hash": "<string>",
      "last_transaction_lt": "0",
      "next_item_index": "<string>",
      "owner_address": "<string>"
    }
  ]
}

Query Parameters

collection_address
string[]

Collection address in any form. Max: 1024.

owner_address
string[]

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

limit
integer
default:10

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

Required range: 1 <= x <= 1000
offset
integer
default:0

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

Required range: x >= 0

Response

OK

address_book
object
metadata
object
nft_collections
object[]
I