List incidents for the authenticated org.
Returns incidents scoped to the authenticated org, filterable by status (comma-separated), severity, or source, with limit/offset pagination. 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
Comma-separated statuses (triggered/acknowledged/resolved).
Filter by severity.
Filter by source.
Page size (max 100, default 50).
Page offset (default 0).
Response Body
application/json
curl -X GET "https://example.com/api/incidents"{
"incidents": [
{
"id": "string",
"workspaceId": "string",
"title": "string",
"description": "string",
"severity": "string",
"status": "string",
"source": "string",
"sourceIncidentId": "string",
"sourceUrl": "string",
"assigneeUserId": "string",
"metadata": {
"property1": null,
"property2": null
},
"createdAt": "string",
"updatedAt": "string",
"resolvedAt": "string"
}
],
"total": 0,
"limit": 0,
"offset": 0
}Get one Cedar policy with its version history.
Returns a single Cedar policy scoped to the authenticated org, plus its full version history (newest first). A policy id belonging to another org returns 404.
Get incident summary counts (by status, by severity) and MTTR.
Returns incident counts grouped by status and severity, a total, and mean-time-to-recovery (seconds) for the authenticated org. Bearer-reachable for human principals (user token or browser session); rsk_* API keys and BYOA OAuth-agent tokens are rejected 403.