Skip to content
Last updated

Retrieve the authenticated user's complete profile information.

GEThttps://api.aitronos.com/v1/user/me

Alternative Endpoints

  • GET /v1/user/me
  • GET /v1/user/profile

Both endpoints return identical responses.

Returns

Complete User object with profile information.

Bash
curl -X GET \
  "https://api.aitronos.com/v1/user/me" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

{
  "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"
}