# Get user profile Retrieve the authenticated user's complete profile information. Alternative endpoint to `/v1/user/me`. **Note:** This endpoint is functionally identical to `GET /v1/user/me`. Both return the same user profile data. For complete documentation, examples, and response schemas, see [Get User Profile](/docs/api-reference/authentication/user-management/get-profile). ## Alternative Endpoints - `GET /v1/user/me` (primary) - `GET /v1/user/profile` (alternative) ## Returns Returns a JSON response indicating success or failure. Request ```bash curl -X GET "https://api.aitronos.com/v1/user/profile" \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python import os import requests api_key = os.environ["FREDDY_API_KEY"] response = requests.get( "https://api.aitronos.com/v1/user/profile", headers={"X-API-Key": api_key} ) profile = response.json() print(profile) ``` ```javascript const apiKey = process.env.FREDDY_API_KEY; const response = await fetch('https://api.aitronos.com/v1/user/profile', { headers: { 'X-API-Key': apiKey } }); const profile = await response.json(); console.log(profile); ``` 200 OK ```json { "id": "usr_abc123def456", "email": "user@example.com", "username": "johndoe", "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "profile_image": "https://storage.example.com/profiles/user123.webp", "timezone": "America/New_York", "is_active": true, "created_at": "2025-01-15T08:00:00Z" } ``` 401 Unauthorized ```json { "success": false, "error": { "code": "AUTHENTICATION_REQUIRED", "message": "Authentication required.", "system_message": "Authentication required.", "type": "authentication_error", "status": 401, "details": {}, "trace_id": "req_abc123xyz", "timestamp": "2025-12-22T15:30:00Z" } } ``` ## Related Resources - [Get Profile](/docs/api-reference/users/get-profile)