---
title: "Get User Stats Timeseries"
method: GET
path: "/api/admin/users/stats/timeseries"
tags: ["admin"]
---

# Get User Stats Timeseries

`GET /api/admin/users/stats/timeseries`

Per-day rolling DAU/WAU/MAU/stickiness over the selected lookback (admin).

Distinct (user, day) activity is read once over the lookback plus a 30-day
seed, then the rolling windows are computed in Python so every output day is
fully populated. When ``exclude_admins`` is set, Quadrillion staff are left
out. Buckets use ``date_trunc`` over UTC timestamps.

## Query parameters

- `days` integer, required
- `exclude_admins` boolean, required

## Response `200`

Successful Response

- AdminUserTimeseriesResponse — Daily rolling engagement series over the selected ``range_days`` lookback. Rolling windows are seeded with up to 29 days of history before the lookback so the earliest points are fully populated rather than ramping up from zero.
  - `range_days` integer, required
  - `points` UserStatsTimeseriesPoint[], required
    - `date` string, date, required
    - `dau` integer, required
    - `wau` integer, required
    - `mau` integer, required
    - `stickiness` number, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/quadrillion/apis/quadrillion-cloud-api.md) · [All operations](https://skmtc.net/quadrillion/apis/quadrillion-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/quadrillion/quadrillion-cloud-api/versions/399077308c86/schema)
