curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/nft/collections{
"collections": [
{
"address": "<string>",
"name": "<string>",
"description": "<string>",
"metadata": {},
"owner": "<string>",
"raw_collection_content": "<string>",
"next_item_index": 123,
"icon": "<string>"
}
]
}Retrieves a list of NFT collections from the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/nft/collections{
"collections": [
{
"address": "<string>",
"name": "<string>",
"description": "<string>",
"metadata": {},
"owner": "<string>",
"raw_collection_content": "<string>",
"next_item_index": 123,
"icon": "<string>"
}
]
}nft/collections endpoint retrieves a list of NFT (Non-Fungible Token) collections from the TON blockchain. This endpoint allows you to fetch information about various NFT collections and provides options for pagination.
limit (integer, optional) — The maximum number of NFT collections to return. Default: 128.offset (integer, optional) — The number of NFT collections to skip before starting to return results. Default: 0.collections (array) — An array of NFT collection objects, each containing:
address (string) — The address of the NFT collection.name (string) — The name of the NFT collection.description (string) — The description of the NFT collection.metadata (object) — Additional metadata of the NFT collection.owner (string) — The owner’s address of the NFT collection.raw_collection_content (string) — The raw content of the NFT collection.next_item_index (integer) — The index of the next item in the collection.icon (string) — The URL of the collection’s icon.nft/collections endpoint is useful for various applications that need to interact with or display information about NFT collections on the TON blockchain:
Was this page helpful?