Rekamedika Docs
OAuth2 OIDC

GET /jwks

GET
/api/auth/jwks

Get the JSON Web Key Set

Response Body

application/json

curl -X GET "https://example.com/api/auth/jwks"
{  "keys": [    {      "kid": "string",      "kty": "string",      "alg": "string",      "use": "sig",      "n": "string",      "e": "string",      "crv": "string",      "x": "string",      "y": "string"    }  ]}

Is this page helpful?