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

# Manage API Keys

> Create, list, and delete API keys.

## Create key

<api>POST /v1/auth/keys</api>

<ParamField body="name" type="string">Key name (e.g. "production").</ParamField>

```json Response theme={null}
{ "api_key": "kyma-new-key-here", "name": "production" }
```

## List keys

<api>GET /v1/auth/keys</api>

## Delete key

<api>DELETE /v1/auth/keys/{key}</api>

<Warning>You cannot delete your last API key.</Warning>
