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

# Delete API Key

Revoke and delete a specific API key.

## **DELETE** `/api_keys/:id`

### Path Parameters

| Parameter | Type   | Required | Description                   |
| :-------- | :----- | :------- | :---------------------------- |
| `id`      | string | Yes      | The unique ID of the API key. |

### Response

Returns an empty JSON object upon success.

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X DELETE https://api.blobhub.io/v1/api_keys/key_001
  ```

  ```json Response theme={null}
  {}
  ```
</CodeGroup>
