Frontend API
Retrieve the current authenticated user’s profile information including personal details and preferences.
cURL
curl --request GET \ --url https://{deploymentHost}/me \ --cookie __session=
{ "status": 200, "message": "", "data": { "id": "user_456789123", "first_name": "John", "last_name": "Doe", "username": "johndoe", "email": "[email protected]", "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
HTTP status code
Response message (empty for success)
Response data (can be any type)
Show child attributes
Array of error objects (empty for success)