GET
/
v1
/
oauth
/
userinfo
curl --request GET \
  --url https://api.hyperline.co/v1/oauth/userinfo \
  --header 'Authorization: Bearer <token>'
{
  "given_name": "John",
  "family_name": "Doe",
  "name": "John Doe",
  "picture": "https://...",
  "email": "john@doe.com",
  "email_verified": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
given_name
string | null
required

User given name.

Example:

"John"

family_name
string | null
required

User family name.

Example:

"Doe"

name
string | null
required

User full name.

Example:

"John Doe"

picture
string | null
required

User picture URL.

Example:

"https://..."

email
string
required

User email.

Example:

"john@doe.com"

email_verified
boolean
required

Indicates if the user email is verified.

Example:

true