---
title: "Delete Status Page"
description: "Permanently deletes a status page. Requires admin role."
---

`DELETE /api/status-pages/:id`

## Example (cURL)

```bash
curl -X DELETE "$BASE_URL/api/status-pages/1" \
  -H "Authorization: Bearer $TOKEN"
```

## Response

```json
{ "deleted": true, "id": 1 }
```

## Common errors

- `401 Unauthorized` when not authenticated
- `403 Forbidden` when not an admin
- `404 Not found` when the status page does not exist

