---
title: "Auth Me"
method: GET
path: "/api/v1/auth/me"
tags: ["auth"]
---

# Auth Me

`GET /api/v1/auth/me`

Return the current authenticated identity.

Attempts admin resolution first (via ``get_current_admin``).  If that
fails with 403 (no admin profile), falls back to ``get_current_user``.

## Response `200`

Successful Response

- AuthMeResponse — Wrapper returned by GET /auth/me. Exactly one of ``user`` or ``admin`` will be populated, indicated by the ``type`` discriminator field.
  - `type` string, required
  - `user` UserResponse — Public representation of a customer user.
    - `id` string, uuid, required
    - `email` string, required
    - `first_name` string, required
    - `last_name` string, required
    - `phone` string, nullable
    - `company` string, nullable
    - `status` string, required
    - `created_at` string, date-time, required
  - `admin` AdminResponse — Public representation of an admin user with RBAC context.
    - `id` string, uuid, required
    - `email` string, required
    - `first_name` string, required
    - `last_name` string, required
    - `role_name` string, nullable
    - `permissions` string[]
    - `created_at` string, date-time, required

---

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