Skip to main content

Single NFT Details

Surfaces details about a single NFT with its metadata including the collection it belongs to, token ID, traits, name, description, media (images/animations/audio), holders, transfers, and estimated value information.

nftToken

Takes collectionAddress, network, and tokenId as input. Returns detailed data about a specific NFT including:

  • Token metadata
  • Current ownership
  • Transfer history
  • Traits and rarity
  • Media assets

Example Use Case: NFT Display

Let's say you want to display a specific NFT. Start by passing the collectionAddress, network, and tokenId to identify the NFT. Then return information about the token including its name, description, current estimatedValue, and media assets from mediasV3. You can also get trait information and current sale data.

Example Variables

{
"collectionAddress": "0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb",
"network": "ETHEREUM_MAINNET",
"tokenId": "7495"
}

Example Query

query ($collectionAddress: String!, $network: Network!, $tokenId: String!) {
nftToken(collectionAddress: $collectionAddress, network: $network, tokenId: $tokenId) {
id
name
description
collection {
name
symbol
address
}
mediasV3 {
images {
edges {
node {
original
thumbnail
}
}
}
}
traits {
attributeName
attributeValue
supply
supplyPercentage
}
estimatedValue {
valueUsd
valueWithDenomination
denomination {
symbol
}
}
lastSale {
valueUsd
valueWithDenomination
denomination {
symbol
}
}
}
}

Example Response

{
"data": {
"nftToken": {
"id": "TmZ0VG9rZW5FcmM3MjEtNzE5MTU1NDg=",
"name": "CryptoPunk #7495",
"description": null,
"collection": {
"name": "CryptoPunks",
"symbol": "PUNK",
"address": "0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb"
},
"mediasV3": {
"images": {
"edges": [
{
"node": {
"original": "https://zapper.xyz/z/images/?url=https%3A%2F%2Fstorage.googleapis.com%2Fzapper-fi-assets%2Fnfts%2Fmedias%2F00f8b24c79685e376e42fa775bfeab0eb3fc55e09e77be0ee31c43193e81c71e.png&checksum=e9d0c",
"thumbnail": "https://zapper.xyz/z/images/?url=https%3A%2F%2Fstorage.googleapis.com%2Fzapper-fi-assets%2Fnfts%2Fmedias%2F00f8b24c79685e376e42fa775bfeab0eb3fc55e09e77be0ee31c43193e81c71e.png&width=100&checksum=173cf"
}
}
]
}
},
"traits": [
{
"attributeName": "accessory",
"attributeValue": "Straight Hair",
"supply": "151",
"supplyPercentage": 1.51
},
{
"attributeName": "type",
"attributeValue": "Female",
"supply": "3839",
"supplyPercentage": 38.39
},
{
"attributeName": "accessory",
"attributeValue": "Purple Lipstick",
"supply": "655",
"supplyPercentage": 6.55
},
{
"attributeName": "accessory",
"attributeValue": "Cigarette",
"supply": "961",
"supplyPercentage": 9.61
}
],
"estimatedValue": {
"valueUsd": 209038.47669524065,
"valueWithDenomination": 54.0358055895261,
"denomination": {
"symbol": "ETH"
}
},
"lastSale": {
"valueUsd": 228242.5512207,
"valueWithDenomination": 59,
"denomination": {
"symbol": "ETH"
}
}
}
}
}
Try in sandbox

Arguments

ArgumentDescriptionTypeRequired
collectionAddressThe contract address of the NFT collectionString!Yes
networkThe blockchain network where the NFT existsNetwork!Yes
tokenIdThe unique identifier of the NFT within its collectionString!Yes

Fields

FieldDescriptionType
idUnique identifier for the NFTID!
tokenIdToken ID within the collectionString!
nameName of the NFTString!
descriptionDescription of the NFTString
supplyTotal supply of this tokenBigDecimal!
circulatingSupplyNumber of tokens in circulationBigDecimal!
holdersCountNumber of unique holders (ERC-1155)BigDecimal!
socialLinksSocial media links[SocialLink!]!
collectionParent collection informationNftCollection!
traitsToken traits/attributes[NftTrait!]!
mediasV2Media assets (legacy format)[NftMediaV2!]!
mediasV3Media assets (current format)NftMedias!
transfersTransfer historyNftTransferConnection
holdersCurrent token holdersNftHolderConnection!
holdersFollowedByAddressHolders followed by given address[NftHolder!]!
isHiddenWhether token is hidden by ownerBoolean!
estimatedValueCurrent estimated valueNftValueDenomination
lastSaleMost recent sale detailsNftValueDenomination
rarityRankToken rarity ranking (deprecated)Int
lastSaleEthLast sale price in ETH (deprecated)BigDecimal
estimatedValueEthEstimated value in ETH (deprecated)BigDecimal

Enums

enum NftTransferSort {
TIMESTAMP
}

enum OrderDirectionOption {
DESC
ASC
}

Notes

  • Returns comprehensive NFT metadata
  • Includes current value estimates and last sale data
  • Provides access to high-quality media assets
  • Shows detailed trait information
  • Includes ownership and transfer history
  • Supports both ERC721 and ERC1155 standards