Nimbu Developer Docs
ReferenceO Auth2

Get OpenID Connect certificates

GET
/oauth2/certs

Returns the public key set for verifying ID tokens.

Response Body

application/json

curl -X GET "https://example.com/oauth2/certs"
{
  "keys": [
    {
      "kty": "string",
      "use": "string",
      "kid": "string",
      "n": "string",
      "e": "string"
    }
  ]
}