GET · Stats timeseries

Bucketed counts over time — feed straight into a chart.

GET /api/stats/timeseries

Memory-creation counts bucketed by day / week / month. Drives the dashboard sparkline.

curl "https://www.mnueron.com/api/stats/timeseries?bucket=month&months=12&scope=mine" \
  -H "Authorization: Bearer $MNUERON_API_TOKEN"

Query

ParamTypeDefaultNotes
bucketstringmonthday / week / month
monthsint121..36
scopestringminemine (just my memories) / org (all members)

scope=org requires a paid plan (402 on free).

Response

{
  "bucket": "month",
  "scope": "mine",
  "buckets": [
    { "t": 1735689600000, "count": 14 },
    { "t": 1738368000000, "count": 22 }
  ]
}
Last updated 2026-05-24edit