TikTok Followers Scraper: Public Follower List, No Login, $0.50 per 1,000 Followers
Pass in a TikTok username and get back the public follower list, one row per follower. Each row includes username, display_name, bio, verified badge, follower_count, following_count, avatar URL, and full profile_url. No login or API key required. Pulls up to 5,000 followers per target profile.
What you can scrape
- Identity: username, user_id (stable across renames), sec_uid, display_name, profile_url
- Profile context: bio, avatar_url, verified badge
- Reach signal: follower_count, following_count of each follower
- Provenance: source_profile (which target this follower came from), scraped_at timestamp
- Pagination: up to 5,000 followers per profile, 30 per scroll cycle
Primary use cases
- Lookalike audience seeding. Export the followers of three competitor accounts to seed paid-social lookalike audiences
- Niche mapping. Pull the followers of the top-10 creators in a vertical to map the active audience for that niche
- Engagement-pod detection. Cross-reference follower lists between accounts to spot mutual follow rings
- Outreach list building. Find micro-influencers (under 10k followers) who follow a target brand or creator
- Geo + language inference. Sample a follower list to estimate the audience language and rough geography of a creator
API example
curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~tiktok-followers-scraper/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"profiles": ["mrbeast"],
"maxFollowersPerProfile": 500,
"maxScrollsPerProfile": 30
}'
Integrations
- n8n, Make, Zapier: trigger runs and stream follower rows via webhook
- AI Agents (MCP): Claude Desktop, Cursor, VS Code, LangChain, LlamaIndex
- Python, Node.js: Apify SDK for programmatic access
- Google Sheets, Airtable: target handles in, full follower CSV out
Output fields
| Field | Type | Example |
| username | string | fanaccount123 |
| user_id | string | 6614519312189947909 |
| display_name | string | Fan Account |
| bio | string | love @mrbeast |
| verified | boolean | false |
| follower_count | integer | 1,250 |
| following_count | integer | 89 |
| avatar_url | string | https://p16-common-sign.tiktokcdn-eu.com/... |
| profile_url | string | https://www.tiktok.com/@fanaccount123 |
| source_profile | string | mrbeast |
Related Actors