Read org security metrics (overview / health / timeline / posture).
Returns security dashboard metrics scoped to the authenticated org. `metricType` selects the projection: overview (all sections), health, timeline, or posture. `timeRange` ∈ 24h/7d/30d/90d. Bearer-reachable for human principals (user token or browser session); rsk_* API keys and BYOA OAuth-agent tokens are rejected 403.
Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.
In: header
Query Parameters
Which projection to return (default overview).
"overview" | "health" | "timeline" | "posture"Aggregation window (default 30d).
"24h" | "7d" | "30d" | "90d"Timeline row cap (max 100).
Response Body
application/json
curl -X GET "https://example.com/api/security/metrics"{
"metrics": {
"property1": null,
"property2": null
},
"health": {
"property1": null,
"property2": null
},
"timeline": [
{
"property1": null,
"property2": null
}
],
"posture": {
"property1": null,
"property2": null
},
"actorNames": {
"property1": "string",
"property2": "string"
}
}Real-time fleet statistics (org-scoped)
Returns live worker fleet and session queue metrics for the active org. Requires a session cookie or `rsk_` API key - despite the `/api/public` prefix, this endpoint is not anonymous.
Subscribe to the authenticated org's live session-event SSE stream.
Subscribe to the authenticated org's live session-event SSE stream. - Rensei REST API operation reference.