Skip to main content

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

token
EnhancedToken!
The requested token with enriched market and metadata. See EnhancedToken.

Arguments

input
TokenInput!
required
Token identifier (network + address). See TokenInput.

Example

query Token {
  token(input: { 
    networkId: 1, 
    address: "0xdac17f958d2ee523a2206206994597c13d831ec7" 
  }) {
    id
    address
    symbol
    name
    decimals
    networkId
    top10HoldersPercent
  }
}

Playground