Get Current User​
GET
/auth/user/me
Get current authenticated user profile information. This is the recommended endpoint for retrieving user data.
Authorizations​
SessionAuth
Session ID for authenticated requests
TypeAPI Key (header: X-Session-ID)
Responses​
User information retrieved
application/json
JSON
{
"success": true,
"data": {
"user": {
"id": "usr_abc123",
"email": "user@example.com",
"name": "John",
"last_name": "Doe",
"user_name": "johndoe",
"user_type": "customer",
"picture": "https://storage.pubflow.com/users/usr_abc123/picture.jpg",
"phone": "+1234567890",
"is_verified": true,
"two_factor": false,
"created_at": "2025-12-07T10:00:00Z",
"updated_at": "2025-12-07T10:00:00Z"
}
}
}