The TokenNFTs API provides detailed data about a specific NFT token within an NFT Collection, either an ERC721 or ERC1155 contract. You can use this API to return token-specific metadata, including traits, and resized images.
Inputs & Filters
inputTokenNftFilter { address: # Contract address (ERC721, ERC1155) metaData: # allows querying by NFT Token Name, or specific trait or attribute. tokenId: # Unique NFT token ID}
Outputs
typeTokenNft {address: Address! # NFT contract address on the blockchainblockchain: Blockchain # Blockchain where the NFT token is deployedchainId: String! # Unique blockchain identifiercontentType: String # Content type of the NFT token (image, video, audio, etc.)contentValue: Media # NFT Media - resized images, animation, videos, etc.id: # Airstack unique identifier for the NFT tokenlastTransferBlock: # Block number of the token NFT's most recent transferlastTransferHash: # Hash of the token NFT's most recent transferlastTransferTimestamp: # Timestamp of the token NFT's most recent transfermetaData: NftMetadata # Metadata associated with the NFT tokennftSaleTransactions: # **Nested query** allowing to retrieve token sale transactionsrawMetaData: # NFT token metadata as defined in the contracttoken: # **Nested query** allowing to query contract level datatokenBalances: # **Nested query** with token balance data & owner datatokenId: IntString! # Unique NFT token IDtokenTransfers: # **Nested query** with token transfers datatokenURI: String # URI for the token NFT's resourcestotalSupply: String # Total supply of the NFT tokentype: TokenType # Type of NFT - ERC721 or ERC1155}