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

# Get Jwks

> Return the public JWKS document used to verify RS256 JWTs.

In dev mode a self-generated RSA-2048 keypair is used.
In production set JWKS_PUBLIC_KEY to the JSON-serialised JWK(s).
Edge-cacheable (Cache-Control: public, max-age=300).



## OpenAPI

````yaml /openapi.json get /.well-known/jwks.json
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /.well-known/jwks.json:
    get:
      tags:
        - well-known
      summary: Get Jwks
      description: |-
        Return the public JWKS document used to verify RS256 JWTs.

        In dev mode a self-generated RSA-2048 keypair is used.
        In production set JWKS_PUBLIC_KEY to the JSON-serialised JWK(s).
        Edge-cacheable (Cache-Control: public, max-age=300).
      operationId: get_jwks__well_known_jwks_json_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response

````