Get JWKS

GEThttps://test.stytch.com/v1/b2b/sessions/jwks/{project_id}

Get the JSON Web Key Set (JWKS) for a project.


Path parameters


project_id*string

Response fields


request_idstring

status_codeint

keysobject
curl --request GET \
  --url https://test.stytch.com/v1/b2b/sessions/jwks/PROJECT_ID \
  -u 'PROJECT_ID:SECRET' \
  -H 'Content-Type: application/json'

RESPONSE

200
{
    "status_code": 200,
    "keys": [
        {
            "alg": "RS256",
            "e": "example-e",
            "key_ops": ["verify"],
            "kid": "example-key-id",
            "kty": "RSA",
            "n": "example-n",
            "use": "sig",
            "x5c": ["example-x5c"],
            "x5tS256": "example-x5tS256",
        },
    ],
}