GET
/
.well-known
/
jwks.json
Get public keys for JWT verification in JWK Set format
curl --request GET \
  --url https://{subdomain}.auth.{region}.nhost.run/v1/.well-known/jwks.json
{
  "keys": [
    {
      "alg": "RS256",
      "e": "AQAB",
      "kid": "key-id-1",
      "kty": "RSA",
      "n": "abcd1234...",
      "use": "sig"
    }
  ]
}

Response

The public keys in JWK Set format

JSON Web Key Set for verifying JWT signatures

keys
object[]
required

Array of public keys