---
title: "Get subscriber by user UUID"
method: GET
path: "/subscribers/{userUuid}"
---

# Get subscriber by user UUID

`GET /subscribers/{userUuid}`

Returns a single subscriber of the authenticated user by their user UUID, including their subscription details. Returns 404 if the user is not a subscriber.

## Path parameters

- `userUuid` string, uuid, required — UUID of the subscriber to retrieve

## Headers

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

## Response `200`

Subscriber details

- object
  - `uuid` string, uuid, required
  - `handle` string, required
  - `displayName` string, required
  - `nickname` string, nullable, required
  - `isTopSpender` boolean, required
  - `avatarUrl` string, nullable, required
  - `registeredAt` string, date-time, required
  - `subscription` object, nullable, required — Details of the subscriber's current subscription to the creator, or null if none is found
    - `status` 'active' | 'cancelled' | 'pending_confirmation' | 'paused', required — Current status of the subscriber's subscription to this creator
    - `price` number, required — Configured subscription price per period, in minor currency units (cents). This is the list price and does not reflect discounts or free trials — see `amountPaid` for the actual amount charged.
    - `amountPaid` number, required — Amount actually charged for the current period, in minor currency units (cents), after any discount. 0 when nothing has been charged yet (e.g. a fan inside a free trial).
    - `currentPeriodStart` string, date-time, required — Start of the current subscription period (ISO 8601)
    - `currentPeriodEnd` string, date-time, nullable, required — End of the current subscription period / next renewal date (ISO 8601), or null
    - `autoRenewalEnabled` boolean, required — Whether the subscription is set to auto-renew (rebill) at the end of the period
  - `firstSubscribedAt` string, date-time, nullable, required — When the fan first subscribed to the creator (earliest across their whole subscription history), used to tell a genuinely new fan from a re-subscriber. Null if unknown.

## Other responses

- `400` — Bad Request - API version not supported OR validation failed OR invalid UUID
- `401` — Unauthorized Response
- `403` — Unauthorized Response
- `404` — Not Found 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)
