# Remove status page

Permanently deletes an existing status page.

[endpoint]
base_url = "https://betteruptime.com"
path = "/api/v2/status-pages/{status_page_id}"
method = "DELETE"

[[path_param]]
name = "status_page_id"
description = "The ID of the status page you want to delete"
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 204
description = '''Returns empty body'''
body = ''''''
[/responses]

#### Example cURL 

```shell
[label Example]
curl --request DELETE \
  --url https://betteruptime.com/api/v2/status-pages/123456789 \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all status pages API parameters](https://betterstack.com/docs/uptime/api/status-pages-api-response-params/)
[/info]