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

# JWKS

> Public keys for verifying JWT access tokens (RS256).

Returns the JSON Web Key Set for the project. **No** `X-API-Key` or Bearer token.

Replace `{project_id}` with your project UUID.

## Response

**200 OK**

```json theme={null}
{
  "keys": [
    {
      "kty": "RSA",
      "use": "sig",
      "alg": "RS256",
      "kid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "n": "0vx7agoebGcQSuu...",
      "e": "AQAB"
    }
  ]
}
```

## Status codes

| Code | Meaning                             |
| ---- | ----------------------------------- |
| 200  | JWKS returned                       |
| 404  | Project missing or auth not enabled |

See [Best practices](/api-reference/best-practices) for caching and rotation.
