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

# TokenInput

> Input to identify a token by network and contract address.

### TypeScript shape

```ts theme={null}
interface TokenInput {
  address: string;
  networkId: number;
}
```

<ResponseField name="networkId" type="NetworkId!" required>Network ID (e.g. 1, 42161).</ResponseField>
<ResponseField name="address" type="Address!" required>Token contract address.</ResponseField>
