Skip to main content
GET
/
.well-known
/
jwks.json
cURL
curl --request GET \
  --url https://api.sandbox.humanity.org/v2/.well-known/jwks.json
{
  "keys": [
    {
      "kty": "<string>",
      "use": "<unknown>",
      "kid": "<string>",
      "alg": "<string>",
      "n": "<string>",
      "e": "<string>"
    }
  ]
}
Return the JSON Web Key Set (JWKS) used to verify Humanity-signed ID tokens and access tokens. Rotate your caches on the cadence recommended in the response or when you detect a kid you haven’t seen before. Most OAuth libraries fetch this automatically using the discovery document; documenting it here makes the key schema explicit.

Response

200 - application/json
keys
object[]
required