Skip to main content
GET
/
userinfo
cURL
curl --request GET \
  --url https://api.sandbox.humanity.org/v2/userinfo
{
  "sub": "<string>",
  "iss": "<string>",
  "aud": "<string>",
  "authorization_id": "<string>",
  "scopes": [
    "<string>"
  ],
  "updated_at": "<string>",
  "humanity_id": "<unknown>",
  "wallet_address": "<unknown>",
  "email": "<unknown>",
  "email_verified": true
}
Standards-compliant OIDC /userinfo response containing the subject (sub), Humanity identifiers, granted scopes, and optional profile attributes (email, wallet address). Required scopes govern which optional fields populate. Use this when integrating with generic OIDC clients or when you need a portable identity format outside the Humanity SDK.

Response

200 - application/json
sub
string
required
iss
string
required
aud
string
required
authorization_id
string
required
scopes
string[]
required
updated_at
string
humanity_id
null | string
wallet_address
null | string
email
null | string
email_verified
boolean