Get the JSON Web Key Set (JWKS) for a project.
Get JWKS
GEThttps://test.stytch.com/v1/b2b/sessions/jwks/{project_id}
Path parameters
project_id* string
Response fields
request_id string
status_code int
keys object
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",
},
],
}