.well-known
Get JSON Web Key Set
Retrieve a JSON Web Key Set (JWKS) object containing the public keys used to verify JSON Web Tokens (JWT) issued by the Hanko API and signed using the RS256 signing algorithm.
get/.well-known/jwks.json
Response
JSON Web Key Set
Example response
{
"keys": [
{
"alg": "RS256",
"e": "AQAB",
"kid": "d6ff37d7-e3d1-4432-ab80-b64faf55ae36",
"kty": "RSA",
"n": "vPFRUCRoxN3RygdJHR3S5BV-DDLw6n-7oUXtX0nr7Twl...",
"use": "sig"
}
]
}