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

# TokenSparklineInput

> Input for querying token sparklines: token IDs, time range, and resolution.

### TypeScript shape

```ts theme={null}
interface TokenSparklineInput {
  ids: string[];
  from?: number | null;
  to?: number | null;
  resolution?: string | null;
  fillMissingBars?: boolean | null;
}
```

<ResponseField name="ids" type="[String!]!" required>Token IDs in the format `address:networkId`.</ResponseField>
<ResponseField name="from" type="Int">Start timestamp (unix).</ResponseField>
<ResponseField name="to" type="Int">End timestamp (unix).</ResponseField>
<ResponseField name="resolution" type="String">Time resolution (e.g. "1D", "1H").</ResponseField>
<ResponseField name="fillMissingBars" type="Boolean">Whether to fill gaps in the sparkline data.</ResponseField>
