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
headerrequired

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.

family_name
string | null
required

User family name.

name
string | null
required

User full name.

picture
string | null
required

User picture URL.

email
string
required

User email.

email_verified
boolean
required

Indicates if the user email is verified.