> ## 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.

# List API keys for the current org.

> **Required scope:** admin

**Required scope:** `admin`

### Response

`ApiKeyListResponse`

<ResponseField name="keys" type="ApiKeyListItem[]" required>
  <Expandable title="ApiKeyListItem">
    <ResponseField name="created_at" type="string" required />

    <ResponseField name="expires_at" type="string" />

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

    <ResponseField name="last_used_at" type="string" />

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

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

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

    <ResponseField name="rate_limit_per_minute" type="integer (int32)" />

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

    <ResponseField name="scopes" type="ApiScope[]" required />
  </Expandable>
</ResponseField>

<ResponseField name="total" type="integer" required />

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | API keys                                           |
| `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 GET \
    --url 'https://api.nsr.stateset.com/api/v1/auth/keys' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "keys": [
      {
        "created_at": "2026-08-31T14:22:05Z",
        "expires_at": "2026-08-31T14:22:05Z",
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "last_used_at": "2026-08-31T14:22:05Z",
        "name": "Two-Person Tent",
        "org_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "prefix": "string",
        "rate_limit_per_minute": 8,
        "revoked_at": "2026-08-31T14:22:05Z",
        "scopes": []
      }
    ],
    "total": 102
  }
  ```
</ResponseExample>
