---
title: "List active subscribers across all agency creators"
method: GET
path: "/agencies/subscribers"
---

# List active subscribers across all agency creators

`GET /agencies/subscribers`

Returns a single paginated stream of active subscriptions across every creator the authenticated agency manages, sorted by most recent subscription first. Each row is tagged with `creatorUuid` so consumers can group results by creator without an additional join.

Replaces the per-creator `GET /creators/{uuid}/subscribers` fan-out used by agency CRM sync flows: 1 + N calls collapse to ceil(total/size) calls.
<Info>Requires: Agency admin access</Info>

## Query parameters

- `page` integer — Page number to retrieve (starts from 1)
- `size` integer — Number of items to return per page (1-50, default: 15)
- `creatorUuids` string[] — Comma-separated list of creator UUIDs (max 50)

## Headers

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

## Response `200`

Paginated list of active subscribers across the agency's creators

- object
  - `data` object[], required — Array of active subscribers across the agency's creators
    - `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
    - `creatorUuid` string, uuid, required — UUID of the agency-managed creator that the subscriber is subscribed to
    - `subscribedAt` string, date-time, required — When the subscription was created
    - `expiresAt` string, date-time, nullable, required — When the subscription is scheduled to expire, if applicable
  - `pagination` object, required — Pagination information
    - `page` number, required — Current page number
    - `size` number, required — Number of records returned in this response
    - `hasMore` boolean, required — Whether there are more items available on subsequent pages

## Other responses

- `400` — Bad Request - API version not supported OR validation failed
- `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)
