Skip to main content
GET
/
.well-known
/
openid-configuration
cURL
curl --request GET \
  --url https://api.sandbox.humanity.org/v2/.well-known/openid-configuration
{
  "issuer": "<string>",
  "authorization_endpoint": "<string>",
  "token_endpoint": "<string>",
  "userinfo_endpoint": "<string>",
  "jwks_uri": "<string>",
  "response_types_supported": [
    "<string>"
  ],
  "grant_types_supported": [
    "<string>"
  ],
  "scopes_supported": [
    "<string>"
  ],
  "code_challenge_methods_supported": [
    "<string>"
  ],
  "token_endpoint_auth_methods_supported": [
    "<string>"
  ],
  "subject_types_supported": [
    "<string>"
  ],
  "claim_types_supported": [
    "<string>"
  ],
  "claims_supported": [
    "<string>"
  ],
  "id_token_signing_alg_values_supported": [
    "<string>"
  ],
  "revocation_endpoint": "<string>",
  "revocation_endpoint_auth_methods_supported": [
    "<string>"
  ]
}
Expose the standard OpenID Connect discovery document, covering issuer metadata, OAuth endpoints, supported grant types, signing algorithms, and claims. Feed this into generic OIDC clients to configure Humanity automatically. Typically retrieved alongside /.well-known/jwks.json and /.well-known/hp-configuration.

Response

200 - application/json
issuer
string
required
authorization_endpoint
string
required
token_endpoint
string
required
userinfo_endpoint
string
required
jwks_uri
string
required
response_types_supported
string[]
required
grant_types_supported
string[]
required
scopes_supported
string[]
required
code_challenge_methods_supported
string[]
required
token_endpoint_auth_methods_supported
string[]
required
subject_types_supported
string[]
required
claim_types_supported
string[]
required
claims_supported
string[]
required
id_token_signing_alg_values_supported
string[]
required
revocation_endpoint
string
required
revocation_endpoint_auth_methods_supported
string[]