Users
Get current user
Retrieve the profile of the currently authenticated user. Returns account details including name, email, time zone, subscription plan, and onboarding status.
GET /v1/users/me
Parameters
Query parameters
include
array<string>
Related records to include (e.g. mobile_settings, workflow_settings)
fresh
boolean
Skip the cache and fetch the latest data from the database
Responses
200 — Successful response
Content-Type: application/json
error
boolean required
data
object required
data.id
string
Unique user identifier (Firebase UID)
data.first_name
string | null
User's first name
data.last_name
string | null
User's last name
data.email
string (email)
User's email address
data.image_url
string | null
Profile image URL
data.time_zone
string
User's time zone (IANA format)
data.pricing_plan
string
Current subscription plan
data.onboarded_web
boolean
Whether the user has completed web onboarding
data.onboarded_mobile
boolean
Whether the user has completed mobile onboarding
data.created_at
string (date-time)
data.updated_at
string (date-time)
Example
{
"error": false,
"data": {
"id": "string",
"first_name": "string"
}
}
400
No response body.
401
No response body.
403
No response body.
404
No response body.
429
No response body.
500
No response body.
Code samples
curl https://api.prod.getdex.com/v1/users/me \
--header 'Authorization: Bearer YOUR_API_KEY'
fetch('https://api.prod.getdex.com/v1/users/me', {
headers: {
Authorization: 'Bearer YOUR_API_KEY'
}
})
requests.get("https://api.prod.getdex.com/v1/users/me",
headers={
"Authorization": "Bearer YOUR_API_KEY"
}
)

