---
title: "Retrieve user's profile"
method: GET
path: "/me/profile"
tags: ["me"]
---

# Retrieve user's profile

`GET /me/profile`

Retrieves the profile information of the current authenticated user.

## Response `200`

Successfully retrieved the user's profile.

- GetUserProfileResponse
  - `user` UserProfileUserInfo, required — Information about the user.
    - `id` string, uuid, required — The user's ID.
    - `email` string, required — The user's email address.
    - `firstName` string, required — The user's first name.
    - `lastName` string, required — The user's last name.
    - `lastLoginAt` integer, required — The UNIX timestamp in seconds (UTC) of the user's most recent login. (UTC).
    - `lastLoginIDP` 'native' | 'google' | 'github' | 'hugging_face', required — The identity provider used during the user's most recent login. - "native": Logged in with username and password. - "google": Logged in using Google OAuth. - "github": Logged in using GitHub OAuth. - "hugging_face": Logged in using Hugging Face OAuth.
  - `organization` UserProfileOrgInfo — Information about the organization the user belongs to. This field is omitted if the user does not belong to any organization.
    - `id` string, uuid, required — The user's organization ID.
    - `role` 'org_owner' | 'org_user', required — The user's organization role.

## Other responses

- `500` — - [group:**user**, code:**1200**]: Get user encountered DB error.

---

[API](https://skmtc.net/gmicloud/apis/cluster-engine-api.md) · [All operations](https://skmtc.net/gmicloud/apis/cluster-engine-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gmicloud/cluster-engine-api/versions/bcbab016469f/schema)
