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

# Revoke API Key

> Delete an API key permanently

```bash theme={null}
curl -X DELETE https://elumenta.ru/api/v2/keys/13 \
  -H "Authorization: Bearer nb_YOUR_API_KEY"
```

Returns `204 No Content`. Revoked keys stop working immediately.

Rename a key:

```bash theme={null}
PATCH /api/v2/keys/{key_id}
{"name": "new-name"}
```
