---
title: "Get current user"
method: GET
path: "/v1/users/me"
tags: ["users"]
---

# Get current user

`GET /v1/users/me`

Retrieve the profile of the currently authenticated user. Returns account details including name, email, time zone, subscription plan, and onboarding status.

## Query parameters

- `include` string[]
- `fresh` boolean

## Response `200`

Successful response

- object
  - `error` boolean, required
  - `data` object, required
    - `id` string — Unique user identifier (Firebase UID)
    - `first_name` string, nullable — User's first name
    - `last_name` string, nullable — User's last name
    - `email` string, email — User's email address
    - `image_url` string, nullable — Profile image URL
    - `time_zone` string — User's time zone (IANA format)
    - `pricing_plan` string — Current subscription plan
    - `onboarded_web` boolean — Whether the user has completed web onboarding
    - `onboarded_mobile` boolean — Whether the user has completed mobile onboarding
    - `created_at` union — Account creation timestamp
      - string, date-time
      - unknown
    - `updated_at` union — Last profile update timestamp
      - string, date-time
      - unknown

## Other responses

- `400` — Request body failed validation.
- `401` — Missing or invalid API key.
- `403` — Valid key, insufficient permission.
- `404` — Resource does not exist.
- `429` — Rate limit exceeded.
- `500` — Unexpected server error.

---

[API](https://skmtc.net/getdex/apis/dex-public-api.md) · [All operations](https://skmtc.net/getdex/apis/dex-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getdex/dex-public-api/revisions/9d0dd2de771c/schema)
