latestOpenAPI 3.0.3GitGuardian2026-08-201871515.0 MB

511b067cdcb1

OAuth2

List public keys used to sign JWTs.

JSON Web Key Set (RFC 7517) endpoint. Returns the public keys that should be used to validate the signature of JWTs issued by this GitGuardian instance, including OIDC id_tokens.

This endpoint is unauthenticated and aggressively cached.

get/v1/auth/jwks

Response

JSON Web Key Set.

Example response

{
  "keys": [
    {
      "kid": "5d2f4e64-7b1d-4c1d-bb2a-1234567890ab",
      "e": "AQAB",
      "kty": "RSA",
      "alg": "RS256",
      "use": "sig"
    }
  ]
}