GET /api/stats/leaderboard
Drives the dashboard's leaderboard widget.
curl "https://www.mnueron.com/api/stats/leaderboard?limit=10&scope=mine" \
-H "Authorization: Bearer $MNUERON_API_TOKEN"
Query
| Param | Default | Notes |
|---|---|---|
limit | 10 | 1..50 |
scope | mine | mine / org (paid only) |
Response
{
"top_entities": [{ "id": "...", "display_name": "Sarah Chen", "count": 14 }],
"top_namespaces": [{ "name": "work", "count": 412 }],
"top_recalled": [{ "id": "...", "content": "...", "recall_count": 8 }],
"recent_memories": [{ "id": "...", "content": "...", "created_at": ... }],
"scope": "mine"
}