# Get an incident

<mark style="color:$primary;">`GET`</mark> `https://isdown.app/api/v2/incidents/:id`

### Path parameters

| Parameter | Type    | Required | Description     |
| --------- | ------- | -------- | --------------- |
| `id`      | integer | Yes      | The incident ID |

### Example request

```bash
curl https://api.isdown.app/api/v2/incidents/98765 \
  -H "Authorization: Bearer YOUR_API_KEY"
```

### Example response

```bash
{
  "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"
    }
  }
}
```
