v1

latestOpenAPI 3.1.02026-07-222392081.7 MB
OAuth2

Get user info

Returns user information for the authenticated access token.

get/oauth/userinfo

Response

given_namestring nullable required

User given name.

family_namestring nullable required

User family name.

namestring nullable required

User full name.

picturestring uri nullable required

User picture URL.

emailstring email required

User email.

email_verifiedboolean required

Indicates if the user email is verified.

Example response

{
  "given_name": "John",
  "family_name": "Doe",
  "name": "John Doe",
  "picture": "https://...",
  "email": "john@doe.com",
  "email_verified": true
}