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

> List the calling tenant's API keys. The plaintext key and the SHA-256 hash are never returned — only the metadata a caller could need for an audit dashboard…

List the calling tenant's API keys.

The plaintext key and the SHA-256 hash are never returned — only the
metadata a caller could need for an audit dashboard (prefix, scopes,
last\_used\_at, etc.). The current request's key is flagged with
`is_current: true` so callers can self-identify in the list.

### Response

`APIKeySummary[]` — each element:

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

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

<ResponseField name="key_prefix" type="string" required>
  First 12 chars of the key (e.g. 'sk\_ss\_aBc12').
</ResponseField>

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

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

<ResponseField name="is_active" type="boolean" required />

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

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

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

<ResponseField name="is_current" type="boolean">
  True for the key making this request (callers can self-identify).
</ResponseField>

### Status codes

| Code  | Meaning             |
| ----- | ------------------- |
| `200` | Successful Response |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.computer.stateset.app/api/v1/keys' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

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