Get an incident
Returns a single incident by its ID. You can access incidents for services your company owns or has connected.
Path parameters
Parameter
Type
Required
Description
Example request
curl https://api.isdown.app/api/v2/incidents/98765 \
-H "Authorization: Bearer YOUR_API_KEY"Example response
{
"data": {
"id": "98765",
"type": "incidents",
"attributes": {
"url": "https://www.githubstatus.com/incidents/abc123",
"title": "Actions and Packages degraded performance",
"description": "We are investigating reports of degraded performance.",
"status": "minor",
"resolved": true,
"created_at": "2024-03-15T10:00:00.000Z",
"resolved_at": "2024-03-15T12:30:00.000Z",
"updated_at": "2024-03-15T12:30:00.000Z",
"service_id": 42,
"service": "GitHub",
"service_status_url": "https://www.githubstatus.com",
"service_urlname": "github",
"user_generated": false,
"severity_from_provider": "minor",
"components": ["Actions", "Packages"],
"updates": [
{
"status": "investigating",
"created_at": "2024-03-15T10:00:00.000Z",
"description": "We are investigating reports of degraded performance."
}
],
"isdown_url": "https://isdown.app/status/github/incidents/abc123-actions-and-packages-degraded-performance"
}
}
}Last updated