Skip to content
Esc
navigateopen⌘Jpreview
Dashboard

Get JWT keys

Get all JSON web keys for JWT verification

GET/{apiBasePath}/jwt/jwks.json
Path parameters
apiBasePathstringrequired
Its value depends on the apiBasePath set by the user
Responses
200Retrieve JWKs for JWT verification
One of:
object
keysobject[]
Show properties
Array of object
algstring
The algorithm to use when creating the JWT.
Allowed:RS256
ktystring
usestring
kidstring
Unique identifier for the JWK
nstring
Modulus for the key
estring
Exponent for the key
generalErrorResponse
statusstring
Error status code
Allowed:GENERAL_ERROR
messagestring
Error message
400Bad request error
string
404Resource not found error
string
500Internal server error
string
Try it
Server
Parameters
Request
curl -X GET "/auth/jwt/jwks.json"
Response
{
  "keys": [
    {
      "alg": "RS256",
      "kty": "RSA",
      "use": "sig",
      "kid": "string",
      "n": "string",
      "e": "string"
    }
  ]
}

API reference

API schema and response details