finding-gaming-content-creators

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Finding Gaming Content Creators

寻找游戏内容创作者

Discovers gaming creators on TikTok and YouTube. Segments by game genre and creator stage — early-stage gaming creators are cost-effective for hardware and peripheral sponsorships.
在TikTok和YouTube平台发掘游戏创作者。可按游戏品类和创作者阶段进行细分——早期游戏创作者是硬件和外设赞助的高性价比选择。

Prerequisites

前提条件

  • APIFY_TOKEN
    environment variable set
  • Optional: Apify MCP server installed
  • 已设置
    APIFY_TOKEN
    环境变量
  • 可选:已安装Apify MCP服务器

Inputs

输入参数

ParameterTypeRequiredDefaultNotes
startUrls
arrayOptional
[]
TikTok URLs — user profiles, hashtags, music pages, search, locations
keywords
arrayOptional
[]
Search keywords/terms to find posts
sortType
stringOptional
RELEVANCE
Sort order for keyword results:
RELEVANCE
,
MOST_LIKED
,
DATE_POSTED
location
stringOptionalISO 3166-1 alpha-2 country code for regional filtering (e.g.
US
,
GB
)
maxItems
numberOptionalUnlimitedMaximum posts to return across the run
includeSearchKeywords
booleanOptional
false
Add the matched search keyword field to each post
customMapFunction
stringOptionalJavaScript function to transform each output object
参数类型是否必填默认值说明
startUrls
数组可选
[]
TikTok链接——用户主页、话题标签、音乐页面、搜索结果、地点页面
keywords
数组可选
[]
用于查找帖子的搜索关键词/术语
sortType
字符串可选
RELEVANCE
关键词结果的排序方式:
RELEVANCE
(相关性)、
MOST_LIKED
(最多点赞)、
DATE_POSTED
(发布日期)
location
字符串可选用于区域过滤的ISO 3166-1 alpha-2国家代码(例如
US
GB
maxItems
数字可选无限制运行过程中返回的最大帖子数量
includeSearchKeywords
布尔值可选
false
为每个帖子添加匹配的搜索关键词字段
customMapFunction
字符串可选用于转换每个输出对象的JavaScript函数

Workflow

工作流程

Progress:
- [ ] Step 1: Search game-specific content on target platforms
- [ ] Step 2: Collect creator handles
- [ ] Step 3: Enrich and score
- [ ] Step 4: Classify creator type
- [ ] Step 5: Deliver creator list
进度:
- [ ] 步骤1:在目标平台搜索特定游戏内容
- [ ] 步骤2:收集创作者账号
- [ ] 步骤3:丰富信息并评分
- [ ] 步骤4:分类创作者类型
- [ ] 步骤5:交付创作者名单

Step 1: Platform Searches

步骤1:平台搜索

TikTok:
Tool: apify:run-actor
Actor: "apidojo~tiktok-scraper"
Input:
{
  "keywords": ["#[game_or_genre]", "#[game_or_genre]tiktok", "#gamingtiktok", "#[game]gameplay"],
  "maxItems": 300
}
YouTube:
Tool: apify:run-actor
Actor: "apidojo~youtube-scraper"
Input:
{
  "searchKeywords": ["[game_or_genre] gameplay", "[game_or_genre] review", "[game_or_genre] tips", "[game_or_genre] highlights"],
  "maxResults": 50,
  "type": "video"
}
Recommended — run_actor.js (handles waiting, output, and file saving automatically):
bash
undefined
TikTok:
工具: apify:run-actor
Actor: "apidojo~tiktok-scraper"
输入:
{
  "keywords": ["#[game_or_genre]", "#[game_or_genre]tiktok", "#gamingtiktok", "#[game]gameplay"],
  "maxItems": 300
}
YouTube:
工具: apify:run-actor
Actor: "apidojo~youtube-scraper"
输入:
{
  "searchKeywords": ["[game_or_genre] gameplay", "[game_or_genre] review", "[game_or_genre] tips", "[game_or_genre] highlights"],
  "maxResults": 50,
  "type": "video"
}
推荐方案 — run_actor.js(自动处理等待、输出和文件保存):
bash
undefined

Quick answer (prints table to chat)

快速查看(在聊天中打印表格)

node scripts/run_actor.js
--actor "apidojo~tiktok-scraper"
--input '{"param": "value"}'
node scripts/run_actor.js
--actor "apidojo~tiktok-scraper"
--input '{"param": "value"}'

Save as CSV

保存为CSV文件

node scripts/run_actor.js
--actor "apidojo~tiktok-scraper"
--input '{"param": "value"}'
--output YYYY-MM-DD_results.csv --format csv
node scripts/run_actor.js
--actor "apidojo~tiktok-scraper"
--input '{"param": "value"}'
--output YYYY-MM-DD_results.csv --format csv

Save as JSON

保存为JSON文件

node scripts/run_actor.js
--actor "apidojo~tiktok-scraper"
--input '{"param": "value"}'
--output YYYY-MM-DD_results.json --format json
> `APIFY_TOKEN` must be set in environment or `.env` file.

**REST API fallback:**
```bash
node scripts/run_actor.js
--actor "apidojo~tiktok-scraper"
--input '{"param": "value"}'
--output YYYY-MM-DD_results.json --format json
> 必须在环境变量或`.env`文件中设置`APIFY_TOKEN`。

**REST API备选方案:**
```bash

TikTok

TikTok

curl -X POST "https://api.apify.com/v2/acts/apidojo~tiktok-scraper/runs?token=$APIFY_TOKEN" -H "Content-Type: application/json" -d '{"keywords": ["#valorant", "#valorantclips", "#gamingtiktok"], "maxItems": 300}'
curl -X POST "https://api.apify.com/v2/acts/apidojo~tiktok-scraper/runs?token=$APIFY_TOKEN" -H "Content-Type: application/json" -d '{"keywords": ["#valorant", "#valorantclips", "#gamingtiktok"], "maxItems": 300}'

YouTube

YouTube

curl -X POST "https://api.apify.com/v2/acts/apidojo~youtube-scraper/runs?token=$APIFY_TOKEN" -H "Content-Type: application/json" -d '{"searchKeywords": ["valorant gameplay", "valorant tips 2026"], "maxResults": 50}'
undefined
curl -X POST "https://api.apify.com/v2/acts/apidojo~youtube-scraper/runs?token=$APIFY_TOKEN" -H "Content-Type: application/json" -d '{"searchKeywords": ["valorant gameplay", "valorant tips 2026"], "maxResults": 50}'
undefined

Step 2: Score Creators

步骤2:创作者评分

TikTok gaming score:
tt_score = (avg_views / (follower_count + 1)) * 0.40   # view-to-follower ratio
         + (avg_likes / (avg_views + 1)) * 100 * 0.30  # like rate
         + (posts_about_game / total_posts) * 0.30      # niche focus
YouTube gaming score:
view_ratio = avg_views / (subscriber_count + 1)
yt_score = (view_ratio > 0.10 ? 1 : view_ratio/0.10) * 0.35
         + (avg_comments / (avg_views+1) > 0.01 ? 1 : ratio/0.01) * 0.25
         + (subscriber_count in 1000..100000 ? 1 : 0.5) * 0.20
         + (niche_focus_ratio) * 0.20
Creator stage:
  • Rising (< 10K subs): Affordable, high engagement, fast growing — best for early partnerships
  • Mid-tier (10K–100K): Established audience, proven niche authority
  • Macro (> 100K): Large reach, premium pricing
TikTok游戏创作者评分:
tt_score = (avg_views / (follower_count + 1)) * 0.40   # 浏览量/粉丝数比率
         + (avg_likes / (avg_views + 1)) * 100 * 0.30  # 点赞率
         + (posts_about_game / total_posts) * 0.30      # 垂直领域专注度
YouTube游戏创作者评分:
view_ratio = avg_views / (subscriber_count + 1)
yt_score = (view_ratio > 0.10 ? 1 : view_ratio/0.10) * 0.35
         + (avg_comments / (avg_views+1) > 0.01 ? 1 : ratio/0.01) * 0.25
         + (subscriber_count in 1000..100000 ? 1 : 0.5) * 0.20
         + (niche_focus_ratio) * 0.20
创作者阶段:
  • 潜力创作者(订阅数<1万):成本低、互动度高、增长迅速——最适合早期合作
  • 中阶创作者(1万-10万订阅):受众稳定、垂直领域权威已确立
  • 头部创作者(订阅数>10万):覆盖范围广、定价较高

Step 3: Edge Cases

步骤3:特殊情况处理

  • Gaming news / outlet accounts appear: Drop accounts with "news", "esports org", "official" — keep individual creators only
  • Clip compilation accounts (reposts, not originals): Flag if
    video_upload_frequency > 3/day
    — likely compilation not original content
  • TikTok gaming creators also streaming: Note in output if bio mentions "Twitch" or "stream" — these creators have dual platform value
  • Game-specific niche too small: If < 15 creators found for a specific game, widen to genre
  • 出现游戏新闻/机构账号: 剔除名称包含“news”、“esports org”、“official”的账号——仅保留个人创作者
  • 剪辑合集账号(转发内容,非原创):如果
    video_upload_frequency > 3/day
    则标记——这类账号很可能是合集账号而非原创内容创作者
  • TikTok游戏创作者同时在其他平台直播: 如果个人简介提到“Twitch”或“stream”,则在输出中注明——这类创作者具备跨平台价值
  • 特定游戏垂直领域规模过小: 如果针对特定游戏找到的创作者不足15位,扩大搜索范围至品类层级

Output Format

输出格式

undefined
undefined

Gaming Creator List: [GAME/GENRE]

游戏创作者名单: [游戏/品类]

Creators found: [N] | TikTok: [N] | YouTube: [N] | Rising: [N] | Mid-tier: [N] | Date: [DATE]
找到的创作者数量: [N] | TikTok: [N] | YouTube: [N] | 潜力创作者: [N] | 中阶创作者: [N] | 日期: [DATE]

Top TikTok Gaming Creators

顶级TikTok游戏创作者

Creator@HandleFollowersAvg ViewsView RatioNiche FocusStageScore
创作者@账号粉丝数平均浏览量浏览比率垂直领域专注度阶段评分

Top YouTube Gaming Creators

顶级YouTube游戏创作者

CreatorChannelSubscribersAvg ViewsView RatioContent TypeScore
创作者频道订阅数平均浏览量浏览比率内容类型评分

Rising Creators (< 10K — Early Partnership Opportunity)

潜力创作者(<1万订阅——早期合作机会)

CreatorPlatformSubscribersAvg ViewsGameLast Post
undefined
创作者平台订阅数平均浏览量游戏最新发布
undefined

Troubleshooting

故障排查

Only mega-channels appear: Add "small", "indie", or "growing" to search keywords to surface smaller creators. Gaming genre too broad: Narrow by adding specific game title or mechanic: "FPS" → "Valorant", "battle royale". TikTok gaming content dominated by clips with no creator: These are highlight reels — filter out accounts with very high posting frequency (> 2 posts/day likely aggregators).
仅出现头部频道: 在搜索关键词中添加“small”、“indie”或“growing”,以发掘更小体量的创作者。 游戏品类范围过宽: 通过添加具体游戏名称或玩法缩小范围:例如将“FPS”改为“Valorant”、“battle royale”。 TikTok游戏内容多为无创作者的剪辑: 这些是高光集锦——过滤掉发布频率极高的账号(每日发布>2条很可能是聚合账号)。