v15

latestOpenAPI 3.0.0MIT Licenseraw.githubusercontent.com2026-08-016088119.5 KB
system

OAuth2 Provider JWKS Endpoint

Returns the JSON Web Key Set containing public keys used for OAuth2/OIDC token signing.

get/oauth2/jwks

Response

JWKS response

Example response

{
  "keys": [
    {
      "alg": "RS256",
      "e": "AQAB",
      "kid": "key-id-1",
      "kty": "RSA",
      "n": "abcd1234...",
      "use": "sig"
    }
  ]
}