GET/v1/incidents
incidents.list
Returns a paginated list of incidents in the caller's tenant. Sort is `(created_at DESC, id DESC)`; pass `cursor` from `next_cursor` in the previous response to page forward. **Read-only**: incident mutations (ack, resolve, split, merge) are first-party-only actions in the Culprit dashboard and are NOT exposed via the public API in v1.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| cursor | string | optional | Opaque pagination cursor returned in `next_cursor` of the previous response. |
| limit | integer | optional | Page size, 1..100, default 50. |
Response
| Name | Type | Required | Description |
|---|---|---|---|
| object | string | required | Enum: list |
| data | array of Incident | required | |
| has_more | boolean | required | |
| next_cursor | stringnull | required | Opaque pagination cursor returned in the previous list response. |
Examples
curl -sS -X GET \
-H "Authorization: Bearer $CULPRIT_API_TOKEN" \
https://api.theculprit.ai/v1/incidentsTry it
Stored locally in your browser at localStorage.docs.tryit.token. Never sent to Culprit's analytics. Use a read-only token.