# Get JSON Web Key Set Returns the public keys used to verify JWT tokens Endpoint: GET /.well-known/jwks.json Version: 1.0.0 ## Response 200 fields (application/json): - `keys` (array, required) Array of JSON Web Keys - `keys.kty` (string, required) Key type Example: "RSA" - `keys.kid` (string, required) Key ID - `keys.use` (string, required) Key use (sig for signature) Example: "sig" - `keys.alg` (string, required) Algorithm Example: "RS256" - `keys.n` (string) RSA modulus (base64url encoded) - `keys.e` (string) RSA exponent (base64url encoded) ## Response 500 fields (application/json): - `message` (string, required) Error message