Retrieves a list of NFT items from the TON blockchain
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.
address (array of strings, optional) — NFT item address in any form. Max: 1000.owner_address (array of strings, optional) — Address of NFT item owner in any form. Max: 1000.collection_address (array of strings, optional) — Collection address in any form.index (array of strings, optional) — Index of item for given collection. Max: 1000.sort_by_last_transaction_lt (boolean, optional) — Sort NFT items by last transaction lt descending. Warning: results may be inconsistent during pagination with limit and offset.limit (integer, optional) — The maximum number of NFT items to return. Default: 10.offset (integer, optional) — The number of NFT items to skip before starting to return results. Default: 0.nft_items (array) — An array of NFT item objects, each containing:
address (string) — The address of the NFT item.auction_contract_address (string) — The address of the auction contract, if applicable.code_hash (string) — The code hash of the NFT item.collection (object) — Information about the collection this item belongs to:
address (string) — The address of the collection.code_hash (string) — The code hash of the collection.collection_content (object) — The content/metadata of the collection.data_hash (string) — The data hash of the collection.last_transaction_lt (string) — The logical time of the last transaction.next_item_index (string) — The index of the next item in the collection.owner_address (string) — The address of the collection owner.collection_address (string) — The address of the collection.content (object) — The content of the NFT item.data_hash (string) — The data hash of the NFT item.index (string) — The index of the NFT item within its collection.init (boolean) — Whether the NFT item is initialized.last_transaction_lt (string) — The logical time of the last transaction.on_sale (boolean) — Whether the NFT item is on sale.owner_address (string) — The address of the current owner.real_owner (string) — The address of the real owner (if different from owner_address, e.g. when on sale).sale_contract_address (string) — The address of the sale contract, if applicable.address_book (object) — Address book information.metadata (object) — Metadata information.nft/items endpoint is useful for various applications that need to interact with or display information about individual NFT items on the TON blockchain:
NFT item address in any form. Max: 1000.
Address of NFT item owner in any form. Max: 1000.
Collection address in any form
Index of item for given collection. Max: 1000.
Sort NFT items by last transaction lt descending. Warning: results may be inconsistent during pagination with limit and offset.
The maximum number of NFT items to return
The number of NFT items to skip before starting to return results