Collections
Get NFT collections by specified filters
Authorizations
Query parameters
collection_addressstring[]Optional
Collection address in any form. Max: 1024.
owner_addressstring[]Optional
Address of collection owner in any form. Max: 1024.
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
400
Bad Request
application/json
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"
}
]
}