Skip to main content
  • Search is free and uses the same filters as the existing Creators API.
  • Use the userIds returned by search to fetch full creator profiles.

Base URL

https://api.topyappers.com

Authentication

All requests require an API key in the header:

Pricing

Rate limits

  • 60 requests per minute per API key (returns 429 with Retry-After when exceeded).

Workflow

  1. Search creators with filters (free) → returns userIds
  2. Get creators by passing those userIds → returns full creator objects
  3. Paginate with page and perPage

1) Search creators (free)

Headers:
  • x-ty-api-key: your-api-key
Query parameters:
  • Same filters as v1 creators: performance (followers, average views/likes, engagement rate), posting cadence (uploadsPerWeek*, uploadsPerMonth*), average video duration, promotion / affiliate / sponsorship post counts, account type, language, hashtags, demographics, content & geography, email, sorting, and pagination. See Available parameters.
  • Defaults: page=1, perPage=10.

Sorting

Use sortBy and sortOrder on the query string the same way as v1 creators. Default: sortBy=date_created, sortOrder=desc (newest / most recently updated in our index first)—important when you care about date added or recency rather than only follower size. Full detail, allowed sortBy values, and examples: Sorting (Creators API).
Example response:

2) Get creators by ID

Headers:
  • x-ty-api-key: your-api-key
  • Content-Type: application/json
Body:

Response shape (public API)

POST /api/v2/creators/get returns an envelope: message, requestedIds (echo of the ids you sent), and response (paginated payload from the backend). Creator profiles live in response.datasnake_case, same projection as v1. Optional fields may be null; date_created_timestamp appears when the index provides it. You can also send user_ids instead of userIds in the request body.
GET /api/v1/creators uses the same creator objects inside response.data, with params instead of requestedIds. Field reference: openapi.jsoncomponents.schemas.Creator (includes a full example).
Use next_page from the search response to continue fetching IDs, then call POST /api/v2/creators/get with those IDs to page through profiles.

Available Parameters

Available creators API parameters for the TopYappers API