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

# Delete API Key

> Permanently revoke an API key

Permanently revokes the API key. Any requests using this key will immediately return `401 Unauthorized`.

## Path Parameters

<ParamField path="id" type="string" required>
  The API key ID to delete
</ParamField>

## Response

Returns a success confirmation.

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://app.replyify.ai/api/api-keys/key_abc123" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</CodeGroup>

<Warning>
  This action is irreversible. Any integrations using the deleted key will stop working immediately.
</Warning>
