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

# API Keys

> Create, list, and delete API keys

Base path: `/v1/api-keys`

All endpoints require `Authorization: Bearer <access_token>`.

### POST /

Create a key for the current user.

Request

```json theme={null}
{ "name": "local", "expires_in_days": 30 }
```

Response (secret shown once)

```json theme={null}
{
  "id": "...",
  "name": "local",
  "api_key": "sk_live_...",
  "key_prefix": "sk_live_...",
  "created_at": "...",
  "expires_at": "..."
}
```

### GET /

List keys (without secret).

Response: `[{ id, name, key_prefix, created_at, expires_at, last_used_at }]`

### DELETE /{key_id}

Delete a key by ID.
