v15

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

Get public keys for JWT verification in JWK Set format

Retrieve the JSON Web Key Set (JWKS) containing public keys used to verify JWT signatures. This endpoint is used by clients to validate access tokens.

get/.well-known/jwks.json

Response

The public keys in JWK Set format

Example response

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