Find TikTok influencers using Apify's Influencer Discovery Agent. Use when the user wants to discover TikTok creators or influencers in any niche.
76
95%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Search for TikTok influencers matching a specific niche using Apify's Influencer Discovery Agent.
Requires requests and either GOOSEWORKS_API_KEY or APIFY_API_TOKEN env var.
# Basic search
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "fitness coaches for women over 40"
# With follower filters
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "AI and tech reviewers" \
--min-followers 10000 --max-followers 500000
# Summary table output
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "vegan cooking creators" --output summary
# CSV export
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "sustainable fashion" --output csvBefore running the search, ask the user for their filtering criteria. Collect ALL of the following:
Ask all 5 criteria in a single question to minimize back-and-forth. Provide sensible default options but always allow custom input.
Compose a detailed --description combining the user's niche, content style preferences, and target audience. Be specific and descriptive.
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "fitness coaches targeting women over 40, focus on home workouts and healthy aging" \
--min-followers 5000 --max-followers 500000 \
--min-fit 0.6 \
--output jsonThe script uses apify~influencer-discovery-agent actor. It routes through the GooseWorks proxy when GOOSEWORKS_API_KEY is set, or directly to Apify when APIFY_API_TOKEN is set.
After receiving results, apply the user's criteria:
fit score and fitDescription to judge relevance; generally exclude fit < 0.6)Present filtered results in a clean markdown table:
| Creator | Handle | Followers | Engagement | Location | Focus | Fit Score |
Include:
After the table, include:
| Flag | Default | Description |
|---|---|---|
--description | required | Describe the type of influencer to find |
--keywords | 5 | Number of search keywords to generate (max 5) |
--profiles-per-keyword | 10 | Profiles per keyword (max 10) |
--min-followers | none | Minimum follower count filter |
--max-followers | none | Maximum follower count filter |
--min-fit | 0.0 | Minimum fit score (0.0-1.0) |
--output | json | Output format: json, csv, summary |
--token | env var | Apify token (overrides env vars) |
--timeout | 300 | Max seconds for Apify run |
8866b2a
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.