Returns a paginated list of incidents for your organization.
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents?status=investigating&severity=critical&limit=10" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"incidents": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"orgId": "org_01HX4K9MNPQRST",
"title": "Payment service elevated error rate",
"severity": "critical",
"status": "investigating",
"affectedComponents": [
{ "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "Payments API" }
],
"createdAt": "2025-04-07T08:23:11.000Z",
"updatedAt": "2025-04-07T08:23:11.000Z"
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"orgId": "org_01HX4K9MNPQRST",
"title": "API gateway latency spike",
"severity": "high",
"status": "investigating",
"affectedComponents": [],
"createdAt": "2025-04-07T07:55:42.000Z",
"updatedAt": "2025-04-07T07:55:42.000Z"
}
],
"nextCursor": "eyJpZCI6ImIyYzNkNGU1LWY2YTctODkwMSJ9"
}
}
Retrieves all incidents belonging to your organization. Results are returned in reverse chronological order (newest first) and can be filtered by status, severity, or date range. Use theDocumentation Index
Fetch the complete documentation index at: https://docs.scaling.cloud/llms.txt
Use this file to discover all available pages before exploring further.
cursor parameter to paginate through large result sets.
investigating, identified, monitoring, or resolved.critical, high, medium, or low.2025-01-01).2025-12-31).1 and 100.nextCursor. Omit to fetch the first page.Hide properties
Show Incident properties
critical, high, medium, or low.investigating, identified, monitoring, or resolved.id and name. Empty array if none.cursor on your next request to fetch the following page. null when there are no more results.| Status | Code | Description |
|---|---|---|
401 | not_authorized | Missing or invalid API key. |
500 | server_error | An unexpected error occurred on our side. |
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents?status=investigating&severity=critical&limit=10" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"incidents": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"orgId": "org_01HX4K9MNPQRST",
"title": "Payment service elevated error rate",
"severity": "critical",
"status": "investigating",
"affectedComponents": [
{ "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "Payments API" }
],
"createdAt": "2025-04-07T08:23:11.000Z",
"updatedAt": "2025-04-07T08:23:11.000Z"
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"orgId": "org_01HX4K9MNPQRST",
"title": "API gateway latency spike",
"severity": "high",
"status": "investigating",
"affectedComponents": [],
"createdAt": "2025-04-07T07:55:42.000Z",
"updatedAt": "2025-04-07T07:55:42.000Z"
}
],
"nextCursor": "eyJpZCI6ImIyYzNkNGU1LWY2YTctODkwMSJ9"
}
}
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents?status=investigating&severity=critical&limit=10" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"incidents": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"orgId": "org_01HX4K9MNPQRST",
"title": "Payment service elevated error rate",
"severity": "critical",
"status": "investigating",
"affectedComponents": [
{ "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "Payments API" }
],
"createdAt": "2025-04-07T08:23:11.000Z",
"updatedAt": "2025-04-07T08:23:11.000Z"
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"orgId": "org_01HX4K9MNPQRST",
"title": "API gateway latency spike",
"severity": "high",
"status": "investigating",
"affectedComponents": [],
"createdAt": "2025-04-07T07:55:42.000Z",
"updatedAt": "2025-04-07T07:55:42.000Z"
}
],
"nextCursor": "eyJpZCI6ImIyYzNkNGU1LWY2YTctODkwMSJ9"
}
}