---
title: "Get Yourself 📇"
method: GET
path: "/api/v1/user/me"
tags: ["User"]
---

# Get Yourself 📇

`GET /api/v1/user/me`

Retrieve details about the currently authenticated user. Perfect for a quick self-check!

## Response `200`

User details

- UserLongDTO
  - `id` string, uuid, required
  - `firstName` string, nullable, required
  - `lastName` string, nullable, required
  - `email` string, email, nullable, required
  - `bio` string, nullable
  - `role` 'SUPERUSER' | 'USER' | 'MEDIA_BUYER' | 'AFFILIATE', required
  - `emailIsVerified` boolean, nullable, required
  - `telegramIsVerified` boolean, nullable, required
  - `createdAt` unknown, required
  - `updatedAt` unknown, required
  - `profileUrl` string, nullable
  - `username` string, nullable
  - `contactViber` string, nullable
  - `contactEmail` string, nullable
  - `contactTelegramNickname` string, nullable
  - `contactTelegramPhone` string, nullable
  - `contactWhatsapp` string, nullable
  - `contactFacebook` string, nullable
  - `contactDiscord` string, nullable
  - `companyName` string, nullable
  - `companyLogo` string, nullable
  - `companyRole` string, nullable
  - `companyId` string, uuid, nullable
  - `companyUserId` string, uuid, nullable
  - `teamId` string, uuid, nullable
  - `accessList` CompanyUserAccessDTO
    - `trackersRead` boolean, nullable — Permission to read trackers.
    - `trackersWrite` boolean, nullable — Permission to write trackers.
    - `trackersDelete` boolean, nullable — Permission to delete trackers.
    - `trackersShowOwnOnly` boolean, nullable — Permission to show only own trackers.
    - `balancesRead` boolean, nullable — Permission to read balances.
    - `balancesWrite` boolean, nullable — Permission to write balances.
    - `balancesDelete` boolean, nullable — Permission to delete balances.
    - `landingsRead` boolean, nullable — Permission to read landings.
    - `landingsWrite` boolean, nullable — Permission to write landings.
    - `landingsDelete` boolean, nullable — Permission to delete landings.
    - `landingsShowOwnOnly` boolean, nullable — Permission to show only own landings.
    - `pwaRead` boolean, nullable — Permission to read PWAs.
    - `pwaWrite` boolean, nullable — Permission to write PWAs.
    - `pwaDelete` boolean, nullable — Permission to delete PWAs.
    - `pwaShowOwnOnly` boolean, nullable — Permission to show only own PWAs.
    - `pushRead` boolean, nullable — Permission to read push.
    - `pushWrite` boolean, nullable — Permission to write push
    - `pushDelete` boolean, nullable — Permission to delete push
    - `pushShowOwnOnly` boolean, nullable — Permission to show only own push
    - `pixelsRead` boolean, nullable — Permission to read pixels.
    - `pixelsWrite` boolean, nullable — Permission to write pixels.
    - `pixelsDelete` boolean, nullable — Permission to delete pixels.
    - `pixelsShowOwnOnly` boolean, nullable — Permission to show only own pixels.
    - `offersRead` boolean, nullable — Permission to read offers.
    - `offersWrite` boolean, nullable — Permission to write offers.
    - `offersDelete` boolean, nullable — Permission to delete offers.
    - `offersShowOwnOnly` boolean, nullable — Permission to show only own offers.
    - `appEventsRead` boolean, nullable — Permission to read app events.
    - `appEventsShowOwnOnly` boolean, nullable — Permission to show only own app events.
    - `teamsRead` boolean, nullable — Permission to read teams.
    - `teamsWrite` boolean, nullable — Permission to write teams.
    - `teamsDelete` boolean, nullable — Permission to delete teams.
    - `membersRead` boolean, nullable — Permission to read members.
    - `membersWrite` boolean, nullable — Permission to write members.
    - `membersDelete` boolean, nullable — Permission to delete members.

## Other responses

- `401` — Authentication required.
- `404` — The requested resource was not found.

---

[API](https://skmtc.dev/pwapps/apis/curie-api.md) · [All operations](https://skmtc.dev/pwapps/apis/curie-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pwapps/curie-api/revisions/060ef67e573a/schema)
