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

# Delete API Key

> Permanently revoke an API key. Requests using it will immediately fail.

# Delete API Key

Permanently revokes an API key. Any requests using this key will immediately fail.

<ParamField path="id" type="string" required>API key UUID</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.rigbox.dev/api/v1/api-keys/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "message": "API key deleted"
  }
  ```
</ResponseExample>
