# Get User Profile Retrieve the authenticated user's complete profile information. ## Alternative Endpoints - `GET /v1/user/me` - `GET /v1/user/profile` Both endpoints return identical responses. ## Returns Complete User object with profile information. Request ```bash curl -X GET \ "https://api.aitronos.com/v1/user/me" \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python import requests response = requests.get( "https://api.aitronos.com/v1/user/me", headers={"Authorization": f"Bearer {FREDDY_API_KEY}"} ) ``` ```javascript const response = await fetch('https://api.aitronos.com/v1/user/me', { method: 'GET', headers: { 'Authorization': `Bearer ${FREDDY_API_KEY}` } }); ``` **Response:** 200 OK ```json { "id": "usr_abc123def456", "email": "user@example.com", "username": "johndoe", "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "birthday": "1990-01-15", "profile_image": "https://storage.example.com/profiles/user123.webp", "timezone": "America/New_York", "country_id": "country_us", "post_code": "10001", "gender": "male", "is_active": true, "last_verified": "2025-11-19T10:30:00Z", "last_login": "2025-11-19T14:00:00Z", "created_at": "2025-01-15T08:00:00Z", "updated_at": "2025-11-19T10:30:00Z" } ``` 401 Unauthorized ```json { "detail": "Not authenticated" } ```