curl "https://api.scanova.io/user-logs/activity-summary/?from=2026-08-01&to=2026-08-31" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
[
{ "date": "2026-08-20", "event_category": "qr_created", "count": 4, "first_at": "2026-08-20T09:01:00Z", "last_at": "2026-08-20T17:44:00Z" },
{ "date": "2026-08-20", "event_category": "login", "count": 1, "first_at": "2026-08-20T08:55:00Z", "last_at": "2026-08-20T08:55:00Z" }
]
User Logs & Activity
Get daily activity stats
GET /user-logs/activity-summary/
GET
/
user-logs
/
activity-summary
/
curl "https://api.scanova.io/user-logs/activity-summary/?from=2026-08-01&to=2026-08-31" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
[
{ "date": "2026-08-20", "event_category": "qr_created", "count": 4, "first_at": "2026-08-20T09:01:00Z", "last_at": "2026-08-20T17:44:00Z" },
{ "date": "2026-08-20", "event_category": "login", "count": 1, "first_at": "2026-08-20T08:55:00Z", "last_at": "2026-08-20T08:55:00Z" }
]
Returns daily rollup counts of activity per event category, on the Management API host (
The response is a flat array — one row per
api.scanova.io), authenticated with your raw Management API key.
GET https://api.scanova.io/user-logs/activity-summary/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
Start date (
YYYY-MM-DD). Defaults to 30 days before to.string
End date (
YYYY-MM-DD). Defaults to today.curl "https://api.scanova.io/user-logs/activity-summary/?from=2026-08-01&to=2026-08-31" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
[
{ "date": "2026-08-20", "event_category": "qr_created", "count": 4, "first_at": "2026-08-20T09:01:00Z", "last_at": "2026-08-20T17:44:00Z" },
{ "date": "2026-08-20", "event_category": "login", "count": 1, "first_at": "2026-08-20T08:55:00Z", "last_at": "2026-08-20T08:55:00Z" }
]
date × event_category combination with at least one event, not a paginated object. Unlike List curated activity feed events, this endpoint is owner-level only and isn’t scoped down for tag-restricted shared users.
Related
- List curated activity feed events — the individual events behind these rollups.
- Get the latest AI activity insight — a narrative summary built from this same data.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Response
200 - application/json
Array of daily rollups.
Was this page helpful?