Get <NFT Details> Interface

Return the ID in the list through the <Top NFT Collection> Interface to obtain the details of a single NFT, and return the basic information of the NFT as well as price, features, etc.

Request Address: /api/v2/meta/getNftDetail

Request Method: GET

Request Parameters:

Field Name
Field Description
Type
Notes

id

NFT ID

string

contractAddress

Contract Address of the NFT

string

tokenId

NFT Token ID

string

Output Parameters: Object

Field Name
Field Description
Type

contractAddress

Contract Address of the NFT Collection

string

contractUrl

Contract Url Address

string

tokenId

Token ID

integer

imageUrl

NFT Image Url Address

string

mainnet

Mainnet Name

string

nftName

NFT Name

string

ownerAddress

Holder's Contract Address

string

ownerImage

Holder Profile Photo

string

ownerUrl

Holder Url Address

string

creatorAddress

Creator's Contract Addr

string

creatorImage

Creator Profile Photo

string

creatorUrl

Creator Url Address

string

rarityRank

Rarity Ranking of the NFT

integer

schemaName

Protocol Name

string

collections

Collection Details

object

traits

Rarity Ranking List

array

supportsWyvem

Whether supported in Opensea

boolean

Collections Field

Field Name
Field Description
Type
Notes

name

Collection Name

string

imageUrl

Collection Image Url Address

string

description

Collection Details

string

Traits Field

Field Name
Field Description
Type
Notes

trait_type

Trait Type

string

trait_value

Trait Value

string

trait_count

Number of Traits an NFT has

integer

percent

Percentage of Traits Among the Collection

integer

Output example:

{
    "resCode":"100",
    "resMsg":"Success",
    "data":{
        "info":{
            "contractAddress":"0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
            "contractUrl":"https://etherscan.io/address/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
            "imageUrl":"https://img.seadn.io/files/f6f6e4aa8d29d45f9ad0b22000b68897.png?h=1024&w=1024&auto=format",
            "mainnet":"ETH",
            "nftName":"BoredApeYachtClub#8",
            "ownerAddress":"0x5cbc5413637343eaab0784522c95b4686f5e96fd",
            "ownerImage":"https://storage.googleapis.com/opensea-static/opensea-profile/3.png",
            "ownerUrl":"https://etherscan.io/address/0x5cbc5413637343eaab0784522c95b4686f5e96fd",
            "creatorAddress":"0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03",
            "creatorImage":"https://storage.googleapis.com/opensea-static/opensea-profile/5.png",
            "creatorUrl":"https://etherscan.io/address/0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03",
            "rarityRank":"3323",
            "tokenId":"8",
            "schemaName":"ERC721",
            "traits":[
                {
                    "trait_type":"Background",
                    "trait_value":"aquamarine",
                    "trait_count":1266,
                    "percent":"12.66"
                },
                {
                    "trait_type":"Earring",
                    "trait_value":"gold stud",
                    "trait_count":439,
                    "percent":"4.39"
                },
                {
                    "trait_type":"Eyes",
                    "trait_value":"robot",
                    "trait_count":350,
                    "percent":"3.50"
                },
                {
                    "trait_type":"Fur",
                    "trait_value":"zombie",
                    "trait_count":301,
                    "percent":"3.01"
                },
                {
                    "trait_type":"Hat",
                    "trait_value":"beanie",
                    "trait_count":578,
                    "percent":"5.78"
                },
                {
                    "trait_type":"Mouth",
                    "trait_value":"bored",
                    "trait_count":2272,
                    "percent":"22.72"
                }
            ],
            "id":"391069545446245376",
            "platformId":"386405378620468200",
            "paymentInfo":{
                "paymentContract":"0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                "paymentDecimals":18,
                "paymentUrl":"https://openseauserdata.com/files/6f8e2979d428180222796ff4a33ab929.svg"
            },
            "collections":{
                "name":"BoredApeYachtClub",
                "imageUrl":"https://lh3.googleusercontent.com/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB=s130",
                "description":"The Bored Ape Yacht Club is a collection of 10,000 unique Bored Ape NFTs— unique digital collectibles living on the Ethereum blockchain. Your Bored Ape doubles as your Yacht Club membership card, and grants access to members-only benefits, the first of which is access to THE BATHROOM, a collaborative graffiti board. Future areas and perks can be unlocked by the community through roadmap activation. Visit www.BoredApeYachtClub.com for more details."
            },
	“supportsWyvern”:true
        }
    }
}

Last updated