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

# Revoke an API key by id.

> **Required scope:** admin

**Required scope:** `admin`

### Path parameters

<ParamField path="id" type="string" required />

### Response

`ApiKeyRevokeResponse`

<ResponseField name="id" type="string" required />

<ResponseField name="revoked_at" type="string" required />

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | API key revoked                                    |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://api.nsr.stateset.com/api/v1/auth/keys/{id}' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "string",
    "revoked_at": "string"
  }
  ```
</ResponseExample>
