curl "https://kodostatus.com/api/v1/incidents?status=investigating&limit=10" \
-H "X-API-Key: your_api_key"
{
"incidents": [
{
"id": "uuid",
"title": "Database connectivity issues",
"status": "investigating",
"severity": "major",
"started_at": "2024-01-15T10:30:00Z",
"resolved_at": null,
"services": [{ "id": "uuid", "name": "API" }]
}
]
}
Get all incidents for your organization
curl "https://kodostatus.com/api/v1/incidents?status=investigating&limit=10" \
-H "X-API-Key: your_api_key"
{
"incidents": [
{
"id": "uuid",
"title": "Database connectivity issues",
"status": "investigating",
"severity": "major",
"started_at": "2024-01-15T10:30:00Z",
"resolved_at": null,
"services": [{ "id": "uuid", "name": "API" }]
}
]
}
investigating, identified, monitoring, resolvedShow incident object
investigating, identified, monitoring, resolvedminor, major, criticalcurl "https://kodostatus.com/api/v1/incidents?status=investigating&limit=10" \
-H "X-API-Key: your_api_key"
{
"incidents": [
{
"id": "uuid",
"title": "Database connectivity issues",
"status": "investigating",
"severity": "major",
"started_at": "2024-01-15T10:30:00Z",
"resolved_at": null,
"services": [{ "id": "uuid", "name": "API" }]
}
]
}