Returns a single incident including its full status history.
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents/YOUR_INCIDENT_ID" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"orgId": "org_01HX4K9MNPQRST",
"title": "Payment service elevated error rate",
"severity": "critical",
"status": "monitoring",
"affectedComponents": [
{ "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "Payments API" }
],
"createdAt": "2025-04-07T08:23:11.000Z",
"updatedAt": "2025-04-07T10:41:05.000Z",
"statusHistory": [
{
"id": "sh_01HX4KABCDE001",
"status": "investigating",
"changedAt": "2025-04-07T08:23:11.000Z",
"resolutionNote": null
},
{
"id": "sh_01HX4KABCDE002",
"status": "identified",
"changedAt": "2025-04-07T09:15:44.000Z",
"resolutionNote": null
},
{
"id": "sh_01HX4KABCDE003",
"status": "monitoring",
"changedAt": "2025-04-07T10:41:05.000Z",
"resolutionNote": null
}
]
}
}
Retrieves a single incident by its ID. The response includes all incident fields plus aDocumentation Index
Fetch the complete documentation index at: https://docs.scaling.cloud/llms.txt
Use this file to discover all available pages before exploring further.
statusHistory array containing every status transition the incident has gone through, in chronological order.
statusHistory surfaces just the lifecycle transitions (investigating → identified → …). For the full timeline — including internal notes, public updates, and redacted entries — call List Incident Updates.Hide properties
critical, high, medium, or low.investigating, identified, monitoring, or resolved.id and name. Empty array if none.Show StatusHistoryEntry properties
investigating, identified, monitoring, or resolved.resolved. null if no note was recorded.| Status | Code | Description |
|---|---|---|
401 | not_authorized | Missing or invalid API key. |
404 | not_found | No incident with the given ID exists in your organization. |
500 | server_error | An unexpected error occurred on our side. |
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents/YOUR_INCIDENT_ID" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"orgId": "org_01HX4K9MNPQRST",
"title": "Payment service elevated error rate",
"severity": "critical",
"status": "monitoring",
"affectedComponents": [
{ "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "Payments API" }
],
"createdAt": "2025-04-07T08:23:11.000Z",
"updatedAt": "2025-04-07T10:41:05.000Z",
"statusHistory": [
{
"id": "sh_01HX4KABCDE001",
"status": "investigating",
"changedAt": "2025-04-07T08:23:11.000Z",
"resolutionNote": null
},
{
"id": "sh_01HX4KABCDE002",
"status": "identified",
"changedAt": "2025-04-07T09:15:44.000Z",
"resolutionNote": null
},
{
"id": "sh_01HX4KABCDE003",
"status": "monitoring",
"changedAt": "2025-04-07T10:41:05.000Z",
"resolutionNote": null
}
]
}
}
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents/YOUR_INCIDENT_ID" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"orgId": "org_01HX4K9MNPQRST",
"title": "Payment service elevated error rate",
"severity": "critical",
"status": "monitoring",
"affectedComponents": [
{ "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "Payments API" }
],
"createdAt": "2025-04-07T08:23:11.000Z",
"updatedAt": "2025-04-07T10:41:05.000Z",
"statusHistory": [
{
"id": "sh_01HX4KABCDE001",
"status": "investigating",
"changedAt": "2025-04-07T08:23:11.000Z",
"resolutionNote": null
},
{
"id": "sh_01HX4KABCDE002",
"status": "identified",
"changedAt": "2025-04-07T09:15:44.000Z",
"resolutionNote": null
},
{
"id": "sh_01HX4KABCDE003",
"status": "monitoring",
"changedAt": "2025-04-07T10:41:05.000Z",
"resolutionNote": null
}
]
}
}