VoidnetVoid Docs
Openapi-well knownJwks json

JSON Web Key Set (JWKS)

Return the gateway's public signing keys as a JWKS. Clients use these to verify the signature of JWT access tokens issued by the gateway. Token selection is based on the `alg` header (RS256).

GET/.well-known/jwks.json

Return the gateway's public signing keys as a JWKS. Clients use these to verify the signature of JWT access tokens issued by the gateway. Token selection is based on the alg header (RS256).

Response Body

application/json

application/json

curl -X GET "https://example.com/.well-known/jwks.json"
{
  "keys": [
    {
      "alg": "string",
      "e": "string",
      "kid": "string",
      "kty": "string",
      "n": "string",
      "use": "string"
    }
  ]
}
{
  "error": "string",
  "error_description": "string"
}