GET
/
user
/
me
curl --request GET \
  --url https://api.bolna.ai/user/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "Bruce Wayne",
  "email": "jsmith@example.com",
  "wallet": 42.42,
  "concurrency": {
    "max": 10,
    "current": 7
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Your user details

The response is of type object.