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

# API Keys

> Manage your API keys — list, create, and revoke.

## List Keys

<ParamField query="Authorization" type="string" required>
  Bearer JWT token from login
</ParamField>

```bash theme={null}
curl "https://api.arbiterapi.com/v1/keys" \
  -H "Authorization: Bearer YOUR_JWT"
```

## Create Key

```bash theme={null}
curl -X POST "https://api.arbiterapi.com/v1/keys" \
  -H "Authorization: Bearer YOUR_JWT" \
  -H "Content-Type: application/json" \
  -d '{"label": "production"}'
```

## Revoke Key

```bash theme={null}
curl -X DELETE "https://api.arbiterapi.com/v1/keys/KEY_ID" \
  -H "Authorization: Bearer YOUR_JWT"
```
