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

# Revoke API Key

> Permanently revoke an API key.

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the API key to revoke.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.getagentdrive.com/v0/keys/key_abc123 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

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

## Response

<ResponseField name="success" type="boolean">
  Whether the API key was successfully revoked.
</ResponseField>
