Skip to content

GET /api/oauth/.well-known/jwks.json

Read the JSON Web Key Set used to verify e-Próspera OAuth and OIDC tokens.

Endpoint

text
GET /api/oauth/.well-known/jwks.json

Response

Success Response (200 OK)

Returns a standard JWKS document:

json
{
  "keys": [
    {
      "kty": "RSA",
      "n": "...",
      "e": "AQAB",
      "use": "sig",
      "alg": "RS256",
      "kid": "eprospera-2025-1"
    }
  ]
}

Notes

  • Use this key set to verify id_token and access-token signatures.
  • The JWKS response is publicly cacheable.
  • The current signing algorithm is RS256.