Get NFT by contract and token ID
Returns detailed information about a specific NFT including collection data and metadata
Parameters
chainId
* number (Enum)queryBlockchain network identifier
contract
* string queryNFT contract address
id
* string queryUnique token identifier within the contract
provider
* string (Enum)queryData provider source for the NFT
Request Body
This request doesn’t have any request body.
JavaScript
Copy
1
Returns
200
400
401
500
Detailed NFT information including collection, creator, and traits
id
* string Unique identifier (format: chainId:contract:tokenId)
token_id
* string Unique token identifier within the contract
name
* string Name of the NFT
image_url
* object URL of the NFT image
chainId
* number Blockchain network identifier
provider
* string Data provider source (OPENSEA, RARIBLE, POAP)
description
* string Description of the NFT
permalink
* string Permanent URL to the NFT on the provider platform
collection
* any Collection information
allOf[0]
Collection object NFT collection information
image_url
* string URL of the collection image
name
* string Name of the collection
description
* string Description of the collection
creator
* any Creator information
allOf[0]
Creator object NFT creator information including wallet address and profile
profile_img_url
* string URL of the creator profile image
address
* string Wallet address of the creator
user
* any Creator user information
allOf[0]
User object User account information
username
* string Username of the account
traits
* array List of NFT traits/attributes
items
Traits object Key-value pair representing an NFT trait attribute
value
* string Value of the trait attribute
asset_contract
* any NFT contract information
allOf[0]
AssetContract object NFT contract information including address and token standard
address
* string Contract address on the blockchain
schema_name
* string Token standard (e.g., ERC721, ERC1155)
JSON
Copy
1