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

# Delete Hook

> Permanently remove an installed hook.

## Path Parameters

<ParamField path="id" type="string" required>
  The hook UUID.
</ParamField>

## Response

```json theme={null}
{ "deleted": true }
```

## Authentication

Requires an API key with `completions` scope.

## Example

<CodeGroup>
  ```bash curl theme={null}
  curl -X DELETE https://www.hitheo.ai/api/v1/hooks/HOOK_ID \
    -H "Authorization: Bearer $THEO_API_KEY"
  ```

  ```typescript SDK theme={null}
  await theo.deleteHook("HOOK_ID");
  ```
</CodeGroup>
