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

The response is of type object.