nft/items - Ton

nft/items. Provides information about individual NFTs, including their metadata, ownership.

nft/items - ton [Value: 100CU]
Provides information about individual NFTs, including their metadata, ownership.
Use cases

Use cases

  • Get data on specific NFT items
  • Analyze NFT item details
  • Audit NFT metadata
Constraints

Constraints

  • Requires valid item ID
  • Supports NFT Items V3 only
  • Depends on sync
Get started
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key

Language

Request
Examples
curl --request GET \
     --url ' https://ton.drpc.org/rest/api/v3/nft/items?limit=128&offset=0' \
     --header 'accept: application/json'
Copy
Response
200
{
    "ok": true,
    "result": [
        {
            "item_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
            "collection_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
            "owner": "EQD1Lp1KcmGHFpE8eIvL1mnHT83b4HdB8HJxuSfq6Rq4zGyN",
            "metadata_uri": "https://tonart.example.com/metadata/1.json",
            "name": "TON Art #1",
            "description": "A unique piece of digital art from the TON Art Collection.",
            "created_at": 1693527600
        },
        {
            "item_id": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
            "collection_id": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
            "owner": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2",
            "metadata_uri": "https://tonsports.example.com/metadata/5.json",
            "name": "TON Sports #5",
            "description": "An exclusive sports memorabilia NFT from the TON Sports Collection.",
            "created_at": 1693527500
        }
    ]
}

Copy

Request params

Parametersobject
object
limitinteger
Optional. The maximum number of NFT collections to return. Default is 128.
offsetinteger
Optional. The number of NFT collections to skip before starting to return results. Default is 0.

Response

200

Response params

object
okboolean
Indicates if the request was successful.
resultarray
List of NFT collection details.
object
collection_idstring
Unique identifier of the NFT collection.
namestring
Name of the NFT collection.
symbolstring
Symbol representing the NFT collection.
creatorstring
Address of the creator of the collection.
total_supplystring
Total supply of NFTs in the collection.
base_uristring
Base URI for accessing metadata of NFTs in the collection.
created_atinteger
Unix timestamp indicating when the collection was created.
descriptionstring
Description of the NFT collection.