Documentation Index Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
Use this file to discover all available pages before exploring further.
Returns
The requested token with enriched market and metadata. See EnhancedToken . Show View fields (EnhancedToken)
The ID of the token (address:networkId).
The token ID on CoinMarketCap.
Percentage held by top 10 holders.
Whether the token is flagged as a scam.
Block height at token creation.
Transaction hash of token creation.
Mint authority address if mintable.
Freeze authority address if freezable.
Whether freezable state is valid.
Whether mintable state is valid.
The following fields are deprecated — supply and image fields have moved to TokenInfo ; pooled lives on the pair instead. They remain in the schema for backwards compatibility and may be removed in a future version. explorerData
ExplorerTokenData
deprecated
Deprecated — pooled values can be found on the
Pair type instead.
Arguments
Token identifier (network + address). See TokenInput .
Network ID (e.g. 1, 42161).
Example
query Token {
token ( input : {
networkId : 1 ,
address : "0xdac17f958d2ee523a2206206994597c13d831ec7"
}) {
id
address
symbol
name
decimals
networkId
top10HoldersPercent
}
}
Playground