Skip to main content
GET
/
api
/
v1
/
auth
/
me
Get Me
curl --request GET \
  --url https://api.example.com/api/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "is_admin": true,
  "is_playing": true,
  "robot_ip": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

id
integer
required
name
string
required
is_admin
boolean
required
is_playing
boolean
required
robot_ip
string | null
required