Skip to content

Get the JWKS public key set

Returns the RS256 public-key set (JWKS) used to verify both login JWTs and VCs. Select the key by the token's header.kid; keys may be rotated.

GET
/.well-known/jwks.json

Responses

The JWKS key set.

application/json

JSON Web Key Set of RS256 public keys.

The public keys. Select by kid.

{
  "keys": [
    {
      "kty": "<string>",
      "use": "<string>",
      "alg": "<string>",
      "kid": "<string>",
      "n": "<string>",
      "e": "<string>"
    }
  ]
}

Released under the MIT License.