Skip to main content
GET
/
api
/
v1
/
me
Get current user profile
curl --request GET \
  --url https://ai-loop.alpeadria.com/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "email": "[email protected]",
  "name": "John",
  "surname": "Doe",
  "companyName": "WaveCentric",
  "companyVerified": true,
  "permission": "admin",
  "status": "Completed",
  "jobTitle": "Engineer"
}
Retrieves the current user’s profile information.

Authorizations

Authorization
string
header
required

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

Response

User profile data

_id
string
email
string
name
string
surname
string
companyName
string
companyVerified
boolean
permission
string
status
string
jobTitle
string