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