Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

UserInfo

The UserInfo endpoint returns claims about the authenticated user. The claims returned depend on the scopes granted during authorization.

GET/oauth2/userinfoBearer Token

Returns claims about the authenticated user. Requires a valid access token with appropriate scopes.

Response
{
  "sub": "user-uuid",
  "email": "jane@example.com",
  "email_verified": true,
  "name": "Jane Doe",
  "given_name": "Jane",
  "family_name": "Doe",
  "picture": "https://avatars.githubusercontent.com/u/12345"
}

Scopes and Claims

ScopeClaims Returned
openidsub
profilename, picture
emailemail, email_verified

See Scopes & Claims for more details.