---
title: "Get authenticated user information"
method: GET
path: "/api/v1/me"
tags: ["👤 Authentication"]
---

# Get authenticated user information

`GET /api/v1/me`

Retrieve information about the currently authenticated user. This is typically the first endpoint you'll call to verify your API key is working correctly.

## Response `200`

User information retrieved successfully

- object
  - `status` boolean
  - `message` string
  - `data` object
    - `id` string
    - `_id` string — Deprecated alias for `id` — will be removed once clients migrate.
    - `firstname` string
    - `lastname` string
    - `full_name` string
    - `username` string
    - `email` string
    - `phone_no` string
    - `image` string
    - `state` string
    - `date_format` string
    - `time_format` string
    - `created_at` string, date-time
    - `authenticated_at` string, date-time

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `429` — Too Many Requests - Rate limit exceeded
- `500` — Internal server error

---

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