> ## 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 Service

> Permanently delete a service

## Path Parameters

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

## Response

Returns a success confirmation.

<Warning>
  Deleting a service will remove it from your status page. Any linked incidents or monitors will be unlinked.
</Warning>

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

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