Insights Endpoints
Insights endpoints provide generated reports and session analysis.
GET /v1/insights/report
Section titled “GET /v1/insights/report”Get the latest insights report.
GET /v1/insights/report?scope=personalAuthorization: Bearer gck_your_key| Parameter | Type | Default | Description |
|---|---|---|---|
scope | string | personal | Report scope |
from | ISO8601 | — | Start time |
to | ISO8601 | — | End time |
Returns the most recent generated report as a JSON payload.
POST /v1/insights/report/generate
Section titled “POST /v1/insights/report/generate”Generate a new insights report on demand.
POST /v1/insights/report/generateAuthorization: Bearer gck_your_keyTriggers asynchronous report generation. Returns immediately with a report ID.
GET /v1/insights/report/history
Section titled “GET /v1/insights/report/history”Get report generation history.
GET /v1/insights/report/history?scope=personal&limit=20Authorization: Bearer gck_your_key| Parameter | Type | Default | Description |
|---|---|---|---|
scope | string | personal | Report scope |
limit | integer | 20 | Max records |
GET /v1/insights/report/:id
Section titled “GET /v1/insights/report/:id”Get a specific report by ID.
GET /v1/insights/report/abc123Authorization: Bearer gck_your_keyGET /v1/insights/sessions/stats
Section titled “GET /v1/insights/sessions/stats”Session type statistics for a time range.
GET /v1/insights/sessions/stats?from=2024-01-01T00:00:00Z&to=2024-01-31T00:00:00ZAuthorization: Bearer gck_your_key| Parameter | Type | Default | Description |
|---|---|---|---|
from | ISO8601 | 30 days ago | Start time |
to | ISO8601 | now | End time |
GET /v1/insights/sessions/highlights
Section titled “GET /v1/insights/sessions/highlights”Session highlights — notable sessions based on scoring, patterns, or anomalies.
GET /v1/insights/sessions/highlights?from=2024-01-01T00:00:00Z&to=2024-01-31T00:00:00ZAuthorization: Bearer gck_your_key| Parameter | Type | Default | Description |
|---|---|---|---|
from | ISO8601 | 30 days ago | Start time |
to | ISO8601 | now | End time |