> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete API Key

> Delete an API key

## Request

### Path Parameters

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

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

<Warning>
  This action cannot be undone. Any applications using this key will lose access
  immediately.
</Warning>

## Response

<ResponseField name="success" type="boolean">
  Indicates successful deletion
</ResponseField>

<ResponseField name="message" type="string">
  Confirmation message
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.60db.ai/developer/api/key-123 \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  await client.deleteApiKey("key-123");
  ```

  ```python Python theme={null}
  client.delete_api_key('key-123')
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "message": "API key deleted successfully"
  }
  ```
</ResponseExample>
