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"
}
]
}