v56

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03113163377.5 KB
Authentication

Get JWKS

Returns the JSON Web Key Set used to validate JWT tokens issued by this service

get/jwks.json

Response

OK

Example response

{
  "keys": [
    {
      "alg": "ES256",
      "crv": "P-256",
      "kid": "<thumbprint>",
      "kty": "EC",
      "use": "sig",
      "x": "<base64url>",
      "y": "<base64url>"
    }
  ]
}