Skip to main content

Returns

tokens
[EnhancedToken!]!
List of tokens in the same order as the input. Each element is an EnhancedToken.

Arguments

ids
[TokenInput!]!
Array of token identifiers; order is preserved in the response. See TokenInput.

Example

{
  tokens(ids: [
    { networkId: 1, address: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" },
    { networkId: 1, address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }
  ]) {
    id
    address
    networkId
    name
    symbol
    decimals
    isScam
    creatorAddress
    createdAt
    exchanges {
      address
      color
      exchangeVersion
      iconUrl
      id
      name
      networkId
      tradeUrl
    }
    socialLinks {
      twitter
      telegram
      discord
      website
    }
    info {
      circulatingSupply
      totalSupply
      imageSmallUrl
      imageLargeUrl
      description
    }
  }
}

Playground