> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kodostatus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Uptime Monitor

> Delete an uptime monitor and its history

## Path Parameters

<ParamField path="id" type="string" required>
  The monitor ID
</ParamField>

## Response

Returns a success confirmation.

<Warning>
  This will permanently delete the monitor and all its check history.
</Warning>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://kodostatus.com/api/v1/uptime-monitors/mon_abc123" \
    -H "X-API-Key: your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>
