GET
/
api
/
user
/
info
curl --request GET \
  --url https://app.all-hands.dev/api/user/info \
  --header 'Authorization: Bearer <token>'
{
  "login": "<string>",
  "name": "<string>",
  "email": "<string>",
  "avatar_url": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

User information

The response is of type object.