cURL
curl --request GET \ --url https://api.veryfront.com/.well-known/jwks.json \ --header 'Authorization: Bearer <token>'
{ "keys": [ { "kty": "RSA", "use": "sig", "alg": "RS256", "kid": "<string>", "n": "<string>", "e": "<string>" } ] }
Returns the JSON Web Key Set for API-issued JWTs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Public JSON Web Key Set
JSON Web Key Set
Show child attributes