Skip to content

Get User Profile

GET
/auth/profile
curl --request GET \
--url https://example.com/auth/profile

Get the full user profile including all registration data

Successful Response

Media typeapplication/json
UserProfileResponse
object
user_id
required
User Id
string
email
required
Email
string
name
Any of:
string
surname
Any of:
string
global_tier
Any of:
string
experience_level
Any of:
string
languages
Any of:
Array
company_name
Any of:
string
email_verified
required
Email Verified
boolean
registration_completed
required
Registration Completed
boolean
password_expires_in_days
Any of:
integer
Examplegenerated
{
"user_id": "example",
"email": "example",
"name": "example",
"surname": "example",
"global_tier": "example",
"experience_level": "example",
"languages": [
"example"
],
"company_name": "example",
"email_verified": true,
"registration_completed": true,
"password_expires_in_days": 1
}