Skip to main content
GET
/
jwks
curl -X GET https://sandbox.connect.hopae.com/jwks
{
  "keys": [
    {
      "kty": "RSA",
      "kid": "2024-09-01",
      "use": "sig",
      "alg": "RS256",
      "n": "oahUI3nmdQ1...",
      "e": "AQAB"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.hopae.com/llms.txt

Use this file to discover all available pages before exploring further.

Download the JSON Web Key Set (JWKS) to validate ID token signatures or configure your OIDC client library.

Query Parameters

No query parameters are required.

Response

keys
object[]
Array of JWK objects containing public keys (kty, kid, use, e, n).
curl -X GET https://sandbox.connect.hopae.com/jwks
{
  "keys": [
    {
      "kty": "RSA",
      "kid": "2024-09-01",
      "use": "sig",
      "alg": "RS256",
      "n": "oahUI3nmdQ1...",
      "e": "AQAB"
    }
  ]
}
The kid (Key ID) in the JWKS matches the kid header of issued ID tokens. When Hopae rotates signing keys, the JWKS is updated with the new key before tokens start referencing it.

Discovery Document

Full issuer metadata via /.well-known/openid-configuration

Token

Exchange codes for ID and access tokens