Retrieve the current authenticated user’s profile information including personal details and preferences.
curl --request GET \
--url https://{deploymentHost}/me
{
"status": 200,
"message": "",
"data": {
"id": "user_456789123",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "john.doe@example.com",
"phone_number": "+1234567890",
"image_url": "https://cdn.example.com/avatars/johndoe.jpg",
"two_factor_enabled": true,
"email_verified": true,
"phone_verified": true,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
User profile retrieved successfully
The response is of type object
.
curl --request GET \
--url https://{deploymentHost}/me
{
"status": 200,
"message": "",
"data": {
"id": "user_456789123",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "john.doe@example.com",
"phone_number": "+1234567890",
"image_url": "https://cdn.example.com/avatars/johndoe.jpg",
"two_factor_enabled": true,
"email_verified": true,
"phone_verified": true,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}