Skip to main content

Get popular creators

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READscrape-creators.scrape_creators_tiktok_get_v1_tiktok_creators_popular
  • Contract tier: legacy
  • Risk: read
  • Catalog version: scrape-creators-2026.07.12.1
  • Descriptor hash: 7f1ad6559b10c029c6c0f2873a16a76b2f7e03e9ff58d2dfae616a12b2abe01c

Use this when you need ScrapeCreators TikTok data from GET /v1/tiktok/creators/popular for Get popular creators. Discovers trending and popular TikTok creators, filterable by follower count range, creator country, and audience country. Returns creator_list, an array of creator objects each with nickname, unique_id, follower_count, likes_count, video_views, engagement_rate, and avatar URLs. Sortable by engagement, follower count, or average views. Returns the ScrapeCreators response in the standard MCP envelope with ok/data/error/meta. This is read-only. Requires the portal grant header and a ScrapeCreators BYOK API key.

Request Body

{
"jsonrpc": "2.0",
"id": "scrape-creators-scrape-creators-tiktok-get-v1-tiktok-creators-popular-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.scrape_creators_tiktok_get_v1_tiktok_creators_popular",
"arguments": {
"body": "",
"page": "",
"params": "",
"sortBy": "engagement",
"compact": "",
"max_items": "",
"include_raw": false,
"path_params": "",
"followerCount": "10K-100K",
"creatorCountry": "AU"
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"body": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "null"
}
],
"title": "Body",
"default": null,
"description": "JSON request body for provider endpoints that accept one."
},
"page": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"title": "Page",
"default": null,
"description": "Page number"
},
"params": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Params",
"default": null,
"description": "Optional advanced query parameter object. Prefer the documented top-level parameters when available."
},
"sortBy": {
"enum": [
"engagement",
"follower",
"avg_views"
],
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sortby",
"default": null,
"description": "Sort creators by engagement, follower count, or average views"
},
"compact": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Compact",
"default": null,
"description": "When true, trims large list payloads before returning them to the agent."
},
"max_items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Max Items",
"default": null,
"description": "Maximum number of list items to return when compacting provider responses."
},
"include_raw": {
"type": "boolean",
"title": "Include Raw",
"default": false,
"description": "When true, returns both compact normalized data and the raw provider payload; this can be large."
},
"path_params": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Path Params",
"default": null,
"description": "Path template values for endpoints that expose path placeholders."
},
"followerCount": {
"enum": [
"10K-100K",
"100K-1M",
"1M-10M",
"10M+"
],
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Followercount",
"default": null,
"description": "Filter by follower count range"
},
"creatorCountry": {
"enum": [
"AU",
"BR",
"CA",
"EG",
"FR",
"DE",
"ID",
"IL",
"IT",
"JP",
"MY",
"PH",
"RU",
"SA",
"SG",
"KR",
"ES",
"TW",
"TH",
"TR",
"AE",
"GB",
"US",
"VN"
],
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Creatorcountry",
"default": null,
"description": "Country code of the creator"
},
"audienceCountry": {
"enum": [
"AU",
"BR",
"CA",
"EG",
"FR",
"DE",
"ID",
"IL",
"IT",
"JP",
"MY",
"PH",
"RU",
"SA",
"SG",
"KR",
"ES",
"TW",
"TH",
"TR",
"AE",
"GB",
"US",
"VN"
],
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Audiencecountry",
"default": null,
"description": "Country code of the audience/follower"
},
"cache_ttl_seconds": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Cache Ttl Seconds",
"default": null,
"description": "Optional cache lifetime for idempotent GET requests."
},
"confirm_high_cost": {
"type": "boolean",
"title": "Confirm High Cost",
"default": false,
"description": "Set true only when intentionally running a high-credit or write-intent request."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or provider operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Bounded operation result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe request, pagination, cache, and timing metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe structured error when ok is false."
}
},
"description": "Scrape Creators MCP normalized response envelope.",
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "scrape-creators-scrape-creators-tiktok-get-v1-tiktok-creators-popular-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.scrape_creators_tiktok_get_v1_tiktok_creators_popular",
"arguments": {
"body": "",
"page": "",
"params": "",
"sortBy": "engagement",
"compact": "",
"max_items": "",
"include_raw": false,
"path_params": "",
"followerCount": "10K-100K",
"creatorCountry": "AU"
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool scrape-creators.scrape_creators_tiktok_get_v1_tiktok_creators_popular executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}