---
title: "Get current user's account"
method: GET
path: "/users/account"
---

# Get current user's account

`GET /users/account`

Get the authenticated user's account view: profile, status, earnings totals, last payout, and fan counts.

## Headers

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

## Response `200`

Current user's account details

- object
  - `uuid` string, uuid, required
  - `email` string, email, required
  - `handle` string, required
  - `displayName` string, required
  - `isCreator` boolean, required
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, nullable, required
  - `avatarUrl` string, nullable, required
  - `bannerUrl` string, nullable, required
  - `bio` string, required
  - `account` object, required
    - `status` 'active' | 'suspended', required — Account lifecycle status
    - `subscriptionPrice` integer, nullable, required — Current monthly subscription price in USD cents (minor units), or null when no price is set (e.g. non-creator accounts). This is the creator's current setting, updatable via PATCH /users/me/subscription-price.
    - `earnings` object, required
      - `total` number, required — All-time gross earnings (sum of paid earning invoices), in USD cents
      - `availableBalance` number, required — Current available balance that can be withdrawn, in USD cents
      - `lastPayoutAt` string, date-time, nullable, required — Date of the most recent payout (paid_at), or null if there has been no payout
    - `fans` object, required
      - `followers` number, required — Number of contactable followers
      - `subscribers` number, required — Number of contactable active subscribers

## 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)
