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
| Param | Type | Default | Notes |
|---|---|---|---|
bucket | string | month | day / week / month |
months | int | 12 | 1..36 |
scope | string | mine | mine (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 }
]
}