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

# Public keys (JWKS)

> The keys the cells use to verify person tokens without calling the control plane.



## OpenAPI

````yaml openapi/en/control.json GET /.well-known/jwks.json
openapi: 3.1.0
info:
  title: Niadra control API
  version: '1'
  description: >-
    Tenants, projects, sources, keys, people, configuration and usage. It never
    receives customer content.
servers:
  - url: https://control.api.niadra.com
security: []
paths:
  /.well-known/jwks.json:
    get:
      summary: Public keys (JWKS)
      description: >-
        The public keys (Ed25519) that sign person tokens. Cells verify tokens
        offline with these keys, so a Console read never waits for the control
        plane. Cached for 5 minutes.


        **Authentication.** No authentication.
      operationId: jwks__well_known_jwks_json_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Jwks  Well Known Jwks Json Get
                type: object
              example:
                keys:
                  - kty: OKP
                    crv: Ed25519
                    kid: ctl-2026-09
                    use: sig
                    alg: EdDSA
                    x: 11qYAYKxCrfVS_7TyWQHOg7hcvPapiMlrwIaaPcHURo
          description: A JWKS document.
      security: []

````