GET
/
users
Get information about the calling user.
curl --request GET \
  --url https://api.comfy.org/users \
  --header 'Authorization: Bearer <token>'
{
  "email": "<string>",
  "id": "<string>",
  "isAdmin": true,
  "isApproved": true,
  "name": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

OK

The response is of type object.