v10

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-0582185581.9 KB
OpenID Connect

Get authenticated user information

OpenID Connect UserInfo Endpoint.

Returns claims about the authenticated user. Requires a valid access token with the openid scope.

Available Claims:

  • user_id - User identifier
  • name, given_name, family_name - Name claims (with profile scope)
  • email, email_verified - Email claims (with email scope)

Authentication: Pass the access token as a Bearer token: Authorization: Bearer {access_token}

get/oauth2/userinfo

Response

User information

user_idstring required

User ID

namestring

Full name

given_namestring

First name

family_namestring

Last name

emailstring email

Email address

email_verifiedboolean

Whether email has been verified

picturestring uri

Profile picture URL

updated_atinteger

Last profile update timestamp (Unix epoch)