Fetch The JSON Web Key Set

GET {{baseUrl}}/.well-known/jwks.json

Retrieves the JSON Web Key Set (JWKS), which is a set of keys containing the public keys used to verify any JSON Web Token (JWT) issued by the Authorization Server and signed using the RS256 signing algorithm. Note: Verification of the token using a JSON Web Key does not guarantee validity due to the possibility of revocation.

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{"keys":[{"kty":"\u003cstring\u003e","e":"\u003cstring\u003e","use":"\u003cstring\u003e","kid":"\u003cstring\u003e","alg":"\u003cstring\u003e","n":"\u003cstring\u003e"},{"kty":"\u003cstring\u003e","e":"\u003cstring\u003e","use":"\u003cstring\u003e","kid":"\u003cstring\u003e","alg":"\u003cstring\u003e","n":"\u003cstring\u003e"}]}