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

# Delete API Key

> Delete an API key

## Path Parameters

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

## Response

Returns 204 No Content on success.

<Note>
  Consider using revoke instead of delete to maintain audit history.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://api.example.com/api-keys/apk_001' \
    -H 'Authorization: Bearer YOUR_TOKEN'
  ```
</RequestExample>
