---
title: "Get online subscribers"
method: GET
path: "/creators/{creatorUserUuid}/subscribers/online"
---

# Get online subscribers

`GET /creators/{creatorUserUuid}/subscribers/online`

Returns subscribers who are currently online for the specified creator.

If `subscriberUuids` query parameter is provided, filters to only those specific subscribers.
Otherwise returns all online subscribers up to `limit`.

<Info>
  **Polling for real-time updates? Use a webhook instead.**

  If you are calling this endpoint on a schedule to detect new activity, subscribe to the `creator.fan.status_changed` webhook event instead — you'll get pushed updates in real time without polling. See the [webhook documentation](https://api.fanvue.com/docs/creator/fan-status).
</Info>

## Path parameters

- `creatorUserUuid` string, uuid, required

## Query parameters

- `limit` number — Maximum number of subscribers to return
- `subscriberUuids` string — Comma-separated list of subscriber UUIDs to filter (optional)

## Headers

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

## Response `200`

List of online subscribers

- object
  - `data` object[], required — List of online subscribers
    - `uuid` string, uuid, required — Subscriber's unique identifier
    - `lastSeenAt` string, date-time, nullable, required — When the subscriber was last seen online
  - `count` number, required — Total number of online subscribers returned

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