---
title: "Get agency creators"
method: GET
path: "/creators"
---

# Get agency creators

`GET /creators`

Returns a paginated list of creators the authenticated agency user's seat is assigned to. Owner seats see every creator on the organization's roster; other seats see only the creators explicitly assigned to them.

Returns 403 when the authenticated account holds no agency team-member seat, so an empty list always means the seat has no assigned creators rather than the token not being an agency one.

## Query parameters

- `page` integer — Page number to retrieve (starts from 1)
- `size` integer — Number of items to return per page (1-50, default: 15)

## Headers

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

## Response `200`

List of creators

- object
  - `data` object[], required — Array of 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
    - `role` string
    - `isAiCreator` boolean, required — Whether the creator is an AI creator: an AI-generated persona rather than a human creator. Fanvue marks these with an "AI Generated" badge, so surface the same disclosure wherever you show the creator off-platform.
  - `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

## Changes

- **2026-09-10** `4d08f36ad6c8` — 1 info
  - added the required property `data/items/isAiCreator` to the response with the `200` status

[Change history](https://skmtc.dev/fanvue/apis/fanvue-api/changes/creators/get.md)

---

[API](https://skmtc.dev/fanvue/apis/fanvue-api.md) · [All operations](https://skmtc.dev/fanvue/apis/fanvue-api/llms.txt) · [OpenAPI document](https://skmtc.dev/fanvue/apis/fanvue-api/revisions/431868e8a264?raw)
