---
title: "Get current user"
method: GET
path: "/users/me"
---

# Get current user

`GET /users/me`

Get details of the currently authenticated user.

## Headers

- `X-Fanvue-API-Version` string, required

## Response `200`

Current user details

- object
  - `uuid` string, uuid, required
  - `email` string, email, required
  - `handle` string, required
  - `bio` string, required
  - `displayName` string, required
  - `isCreator` boolean, required
  - `roles` string[], required — Full non-exclusive set of roles held by the account. Unlike `isCreator`, this expresses that an account can be several things at once (e.g. a creator who also manages an agency). `isCreator` is retained and always equals `roles.includes("creator")`.
  - `isDiscoverable` boolean, required — Whether the profile is eligible to appear in Discovery. Reflects the creator's discoverability setting; it is turned off when the account is restricted or fails moderation. Final placement in Discovery and Suggestions feeds also depends on ranking and per-viewer filters, so being discoverable does not guarantee appearance for every viewer. Always false for non-creators.
  - `isInCuratedSection` boolean, required — Whether the creator is currently surfaced in Discovery/Suggestions via the manager-controlled recommendation flag. Unlike `isDiscoverable` (which is only eligibility), this reflects active curation and is the signal that a model is being surfaced. Final placement for any given viewer still depends on ranking and per-viewer filters (e.g. already-following, country), so this does not guarantee appearance for every viewer. Always false for non-creators.
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, nullable, required
  - `avatarUrl` string, nullable, required
  - `bannerUrl` string, nullable, required
  - `likesCount` number
  - `fanCounts` object
    - `followersCount` number, required
    - `subscribersCount` number, required
  - `contentCounts` object
    - `imageCount` number, required
    - `videoCount` number, required
    - `audioCount` number, required
    - `postCount` number, required
    - `payToViewPostCount` number, required

## Other responses

- `400` — API version not supported
- `401` — Unauthorized Response
- `403` — Unauthorized Response
- `410` — API version no longer supported (sunset)
- `429` — Too many requests - rate limit exceeded

---

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