Skip to main content
GET
/
api
/
ticketing
/
api
/
incidents
List Incidents
curl --request GET \
  --url https://otel.logclaw.ai/api/ticketing/api/incidents \
  --header 'x-logclaw-api-key: <api-key>'
[
  {
    "id": "inc-20240301-001",
    "title": "High error rate on payment-api",
    "severity": "critical",
    "status": "open",
    "service": "payment-api",
    "anomalyScore": 4.2,
    "affectedServices": [
      "payment-api",
      "order-engine"
    ],
    "createdAt": "2024-03-01T15:30:00Z",
    "platforms": [
      "pagerduty",
      "jira",
      "slack"
    ]
  }
]

Authorizations

x-logclaw-api-key
string
header
required

Your project API key (starts with lc_proj_)

Query Parameters

status
enum<string>

Filter by incident status

Available options:
open,
acknowledged,
escalated,
resolved
severity
enum<string>

Filter by severity level

Available options:
critical,
high,
medium,
low

Response

200 - application/json

List of incidents

id
string
Example:

"inc-20240301-001"

title
string
Example:

"High error rate on payment-api"

severity
enum<string>
Available options:
critical,
high,
medium,
low
status
enum<string>
Available options:
open,
acknowledged,
escalated,
resolved
service
string
Example:

"payment-api"

anomalyScore
number
Example:

4.2

createdAt
string<date-time>
platforms
string[]
Example:
["pagerduty", "jira", "slack"]