List incidents
| Parameter | In | Type | Description |
|---|---|---|---|
provider | query | string | Filter by provider slug. |
active | query | boolean | true for unresolved incidents only. |
limit | query | integer (1–100) | — |
Request
curl "https://outagedeck.com/api/v1/incidents?provider=aws&active=false&limit=10"Response (truncated)
{
"meta": { "version": "v1", "generatedAt": "2026-07-07T18:20:04Z" },
"data": {
"count": 1,
"incidents": [
{
"slug": "aws-increased-api-error-rates-n-virginia-2026-07-06",
"title": "Increased API error rates (N. Virginia)",
"status": "resolved",
"severity": "minor",
"startedAt": "2026-07-06T18:21:00Z",
"updatedAt": "2026-07-06T20:04:00Z",
"resolvedAt": "2026-07-06T20:04:00Z",
"provider": { "slug": "aws", "name": "AWS" },
"affectedServices": [{ "slug": "aws-ec2", "name": "EC2" }],
"links": {
"html": "/incidents/aws-increased-api-error-rates-n-virginia-2026-07-06",
"api": "/api/v1/incidents/aws-increased-api-error-rates-n-virginia-2026-07-06"
}
}
]
}
}