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

# List ROUTER API Keys API

> List all API keys registered in the Aria Compute ROUTER. Returns metadata, scopes, and prefix information without exposing full key values.

The List Keys endpoint returns a paginated collection of API keys configured in the Aria Compute ROUTER. Each item includes an identifier, display name, visible key prefix, granted scopes, and creation timestamp. Full key values are never returned after creation.

Any authenticated caller may access this endpoint.

## Endpoint

```http theme={null}
GET /v1/router/keys
```

## Authentication

Authenticate with a session cookie or pass `Authorization: Bearer <api-key>`.

## Response

<ResponseField name="items" type="array">
  List of API keys.

  <Expandable title="items">
    <ResponseField name="id" type="string">
      Unique key identifier.
    </ResponseField>

    <ResponseField name="name" type="string">
      Human-readable name for the key.
    </ResponseField>

    <ResponseField name="prefix" type="string">
      Visible prefix of the secret key.
    </ResponseField>

    <ResponseField name="scopes" type="array">
      Granted permission scopes.

      <Expandable title="strings" />
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 creation timestamp.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://router.example.com/v1/router/keys" \
    -H "Authorization: Bearer <api-key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "key_01hv8",
        "name": "Production pipeline",
        "prefix": "aria_9f3a",
        "scopes": ["read", "write"],
        "created_at": "2024-06-01T12:00:00Z"
      },
      {
        "id": "key_01hv9",
        "name": "Staging agent",
        "prefix": "aria_2b7c",
        "scopes": ["read"],
        "created_at": "2024-06-10T08:30:00Z"
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [List Replayable Router Requests API](/api-reference/router/replay/list.md)
- [Router Providers List and Upsert API](/api-reference/router/management/providers.md)
- [Router Management Plane Models List API](/api-reference/router/management/models.md)
- [Create and List API Keys](/api-reference/agent/api-keys/create-list.md)
- [Revoke ROUTER API Key API](/api-reference/router/keys/revoke.md)
