Skip to main content
GET
/
auth
/
me
Get User Info
curl --request GET \
  --url https://api.example.com/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "user_id": "<string>",
  "username": "<string>",
  "owner_id": "<string>",
  "role": "business"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

User info model.

user_id
string
required
username
string
required
owner_id
string
required
role
enum<string>
default:business

User role enumeration.

Available options:
business,
developer,
admin