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

# SparklineValue

> A single data point in a sparkline (timestamp + value).

### TypeScript shape

```ts theme={null}
interface SparklineValue {
  timestamp: number;
  value: number;
}
```

<ResponseField name="timestamp" type="Int!">Unix timestamp.</ResponseField>
<ResponseField name="value" type="Float!">Value at timestamp.</ResponseField>
