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

# Delete Contact

> Delete a contact

## Overview

The Delete Contact endpoint permanently removes a contact from your account.

<Note>
  **Scope required:** `contacts:write` | **Rate limit:** 10 requests/min
</Note>

## Request

```bash theme={null}
DELETE /v1/contacts/{id}
```

### Example

```bash theme={null}
curl -X DELETE "https://api.mokaru.ai/v1/contacts/clx1234" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="success" type="boolean">Whether the contact was deleted</ResponseField>

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

<Warning>
  This action is permanent. The contact and its associations with applications and interviews will be removed.
</Warning>
