---
title: "List Creators Paginated"
method: GET
path: "/api/admin/creators/list"
tags: ["Admin Creators List", "admin-creators-list"]
---

# List Creators Paginated

`GET /api/admin/creators/list`

List creators with alphabetical pagination, optional substring filter.

Empty `q` -> classic paginated list (sorted by handle).
Non-empty `q` -> filtered list (still paginated; same shape).

Substring matching is ILIKE-based across handle, channel_name, and
email so the "address-bar like" UX matches anywhere in any of those.
Trigram indexes from migration 041 keep this fast at scale.

## Query parameters

- `page` integer
- `per_page` integer
- `q` string, nullable — Optional substring filter
- `include_inactive` boolean

## Response `200`

Successful Response

- CreatorListResponse
  - `creators` CreatorListEntry[], required
    - `user_id` integer, required
    - `email` string, required
    - `handle` string, nullable
    - `channel_name` string, nullable
    - `subscriber_count` integer, nullable
    - `video_count` integer, nullable
    - `is_active` boolean, required
  - `page` integer, required
  - `per_page` integer, required
  - `total` integer, required
  - `total_pages` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/primetime/apis/primetime-media-api.md) · [All operations](https://skmtc.dev/primetime/apis/primetime-media-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/primetime/primetime-media-api/revisions/9da9a9f64e11/schema)
