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

# WindowedDetailedTokenStats

> A single time-windowed slice of detailed token stats (USD-denominated currency stats + transaction/trader counts).

### TypeScript shape

```ts theme={null}
interface WindowedDetailedTokenStats {
  duration: DetailedTokenStatsDuration;
  start: number;
  end: number;
  timestamps: DetailedPairStatsBucketTimestamp[];
  statsUsd: WindowedDetailedCurrencyPairStats;
  statsNonCurrency: WindowedDetailedNonCurrencyPairStats;
}
```

<ResponseField name="duration" type="DetailedTokenStatsDuration!">Duration token for this window (e.g. `min5`, `hour1`). See [DetailedTokenStatsDuration](/api-reference/graphql/types/DetailedTokenStatsDuration).</ResponseField>
<ResponseField name="start" type="Int!">Unix timestamp (seconds) of the window start.</ResponseField>
<ResponseField name="end" type="Int!">Unix timestamp (seconds) of the window end.</ResponseField>
<ResponseField name="timestamps" type="[DetailedPairStatsBucketTimestamp]!">Per-bucket start/end timestamps. See [DetailedPairStatsBucketTimestamp](/api-reference/graphql/types/DetailedPairStatsBucketTimestamp).</ResponseField>
<ResponseField name="statsUsd" type="WindowedDetailedCurrencyPairStats!">USD-denominated OHLCV + buy/sell volume + liquidity. See [WindowedDetailedCurrencyPairStats](/api-reference/graphql/types/WindowedDetailedCurrencyPairStats).</ResponseField>
<ResponseField name="statsNonCurrency" type="WindowedDetailedNonCurrencyPairStats!">Transaction / buy / sell / buyer / seller / trader counts. See [WindowedDetailedNonCurrencyPairStats](/api-reference/graphql/types/WindowedDetailedNonCurrencyPairStats).</ResponseField>
