Returns
The requested token with enriched market and metadata. See EnhancedToken.
Show View fields (EnhancedToken)
Show View fields (EnhancedToken)
The ID of the token (address:networkId).
Token contract address.
The token ID on CoinMarketCap.
Token symbol.
Token name.
Token decimals.
Network ID.
Percentage held by top 10 holders.
Whether the token is flagged as a scam.
Creator wallet address.
Block height at token creation.
Transaction hash of token creation.
Creation timestamp.
Mint authority address if mintable.
Freeze authority address if freezable.
Whether freezable state is valid.
Whether mintable state is valid.
Social links. See SocialLinks.
Launchpad data. See LaunchpadData.
Arguments
Token identifier (network + address). See TokenInput.
Show TokenInput
Show TokenInput
Example
query Token {
token(input: {
networkId: 1,
address: "0xdac17f958d2ee523a2206206994597c13d831ec7"
}) {
id
address
symbol
name
decimals
networkId
top10HoldersPercent
}
}