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

# Delete Platform API Key

> Delete an existing platform API key.

## Authentication

Requires JWT token authentication.

## Path Parameters

<ParamField path="keyUuid" type="string" required>The UUID of the key to delete</ParamField>

## Example Request

```bash theme={null}
curl -X DELETE https://api.app.shinzo.ai/auth/platform_keys/key_abc123def456 \
  -H "Authorization: Bearer <jwt_token>"
```

## Response

```json theme={null}
{
  "message": "API key deleted successfully",
  "uuid": "key_abc123def456",
  "deleted_at": "2025-01-20T16:00:00Z"
}
```

<Warning>
  This action is permanent. Once deleted, the API key can no longer be used for authentication and cannot be recovered.
</Warning>

## Status Codes

| Code  | Description                  |
| ----- | ---------------------------- |
| `200` | Key deleted successfully     |
| `401` | Invalid or missing JWT token |
| `404` | Key not found                |
