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 based on the granted scopes. Requires a valid access token.

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

Scopes and Claims

ScopeClaims Returned
openidsub
profilename, picture
emailemail, email_verified

See Scopes & Claims for more details.