> ## 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.

# tokens

> Fetch multiple tokens by network and contract address.

<Info>
  The `asset`, `assetDeployments`, and `organization` fields are powered by [The Grid](https://thegrid.id) and are only populated for established, verified tokens.
</Info>

### Returns

<ResponseField name="tokens" type="[EnhancedToken!]!">
  List of tokens in the same order as the input. Each element is an [EnhancedToken](/api-reference/graphql/types/EnhancedToken).
</ResponseField>

### Arguments

<ResponseField name="ids" type="[TokenInput!]!">
  Array of token identifiers; order is preserved in the response. See [TokenInput](/api-reference/graphql/types/TokenInput).
</ResponseField>

### Example

```graphql theme={null}
{
  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

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('{ 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 } } }')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
