---
title: "Get current user info"
method: GET
path: "/auth/me"
tags: ["Auth"]
---

# Get current user info

`GET /auth/me`

Returns information about the user that owns the provided public API key.

## Response `200`

Successfully retrieved user information

- object
  - `success` boolean, required
  - `response` object
    - `user` AuthMeUser, required
      - `uuid` string, required — Unique identifier for the user
      - `type` string, required — Account type
      - `membership` object, required — Membership details for the user
      - `ticker` string, required — Ticker symbol associated with the user
      - `username` string, required — Unique username
      - `status` string, required — Account status (e.g. active)
      - `pref_name` string, required — Display name chosen by the user
      - `picture` string, required — URL of the user's profile picture
      - `twitter_userID` string, required — Linked Twitter/X user ID
      - `registered_at` string, date-time, required — ISO 8601 timestamp of when the user registered
      - `profile_views` integer, required — Total number of profile views
      - `invites` integer, required — Number of available invites
      - `invited_by` string, required — Identifier of the user who sent the invite
      - `twitter_data` AuthMeTwitterData, required
        - `verified` boolean, required — Whether the linked Twitter/X account is verified
        - `followers_count` integer, required — Number of followers on the linked Twitter/X account
        - `following_count` integer, required — Number of accounts followed on the linked Twitter/X account
        - `created_at` string, required — Twitter/X account creation date
        - `url` string, required — URL associated with the Twitter/X profile
      - `points` integer, required — Accumulated reward points
      - `rank` integer, required — User's global rank
      - `referral_count` integer, required — Number of successful referrals

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `404` — Not found - User linked to the API key cannot be found
- `429` — Too many requests - Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/bags/apis/bags-public-api-v2.md) · [All operations](https://skmtc.net/bags/apis/bags-public-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bags/bags-public-api-v2/versions/4a14b82cd39d/schema)
