Skip to main content

Token

The Token object represents an individual NFT.

Schema Definition

type Token {
contract: Contract!
tokenId: UInt256!
name: String
mintTransaction: AssetTransaction
burnTransaction: AssetTransaction
media: [Media!]!
metadata: Metadata
holders: HoldersList!
}

Fields

FieldTypeDescription
contractContract! non-null objectAn object representing the properties of the contract managing this NFT.
tokenIdUInt256! non-null scalarThe unique identifier of this NFT within its contract.
nameString scalarThe display name of the NFT.
mintTransactionAssetTransaction objectAn object representing the transaction that created this NFT.
burnTransactionAssetTransaction objectAn object representing a transaction that destroyed this NFT. Null if the token has not been burned.
media[Media!]! non-null objectAn array of Media objects representing the media assets and associated data associated with this NFT.
metadataMetadata objectAn object representing the metadata associated with this NFT.
holdersHoldersList! non-null objectAn array of wallet addresses that currently hold this NFT.

Returned By

token query

Member Of

Balance object ● TokenList object