Skip to main content
GET
/
user
/
me
cURL
curl --request GET \
  --url https://api.bolna.ai/user/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "email": "[email protected]",
  "wallet": 123,
  "concurrency": {
    "max": 123,
    "current": 123
  }
}

Authorizations

Authorization
string
header
required

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

Response

Your user details

id
string<uuid>

Unique id for your user associated with Bolna

name
string

Name of the user

email
string<email>

Email address of the user

wallet
number<float>

Current wallet balance of the user

concurrency
object