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

# TokenSparkline

> Price sparkline data for a single token.

### TypeScript shape

```ts theme={null}
interface TokenSparkline {
  id: string;
  resolution: string;
  attribute: SparklineAttribute | null;
  sparkline: SparklineValue[];
}
```

<ResponseField name="id" type="String!">Token ID (address:networkId).</ResponseField>
<ResponseField name="resolution" type="String!">Time resolution of the sparkline.</ResponseField>
<ResponseField name="attribute" type="SparklineAttribute!">Attribute tracked. See [SparklineAttribute](/api-reference/graphql/types/SparklineAttribute).</ResponseField>
<ResponseField name="sparkline" type="[SparklineValue!]!">List of data points. See [SparklineValue](/api-reference/graphql/types/SparklineValue).</ResponseField>
