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

# TokenTopTradersInput

> Input for tokenTopTraders: token, network, trading period, optional pagination.

### TypeScript shape

```ts theme={null}
interface TokenTopTradersInput {
  tokenAddress: string;
  networkId: number;
  tradingPeriod: TradingPeriod;
  limit?: number | null;
  offset?: number | null;
}
```

<ResponseField name="tokenAddress" type="Address!" required>Token contract address.</ResponseField>
<ResponseField name="networkId" type="NetworkId!" required>Network ID (e.g. 1, 42161).</ResponseField>
<ResponseField name="tradingPeriod" type="TradingPeriod!" required>Period for stats. See [TradingPeriod](/api-reference/graphql/types/TradingPeriod).</ResponseField>
<ResponseField name="limit" type="Int">Max number of traders to return.</ResponseField>
<ResponseField name="offset" type="Int">Pagination offset.</ResponseField>
