Tiktok Follower Scraper avatar
Tiktok Follower Scraper

Pricing

$1.50 / 1,000 results

Go to Apify Store
Tiktok Follower Scraper

Tiktok Follower Scraper

Developed by

Socia Vault

Socia Vault

Maintained by Community

Extract TikTok follower data including usernames, follower counts, bio, and engagement metrics. Perfect for influencer research, audience analysis, and competitor tracking. Fast, reliable, and affordable.

0.0 (0)

Pricing

$1.50 / 1,000 results

1

2

2

Last modified

3 days ago

Scrape followers for TikTok user profiles using the SociaVault API. This actor retrieves detailed follower information including usernames, nicknames, bio, follower/following counts, and profile pictures with automatic pagination support.

Features

  • Multiple Profiles: Scrape followers from multiple TikTok handles in one run
  • Automatic Pagination: Automatically fetches multiple pages to get the exact number of followers you specify
  • Detailed Follower Data: Returns comprehensive profile information for each follower
  • Rate Limiting: Built-in delays to prevent API rate limiting
  • Error Handling: Graceful error handling with detailed logging

Input Parameters

ParameterTypeRequiredDefaultDescription
handlesArrayYes-List of TikTok usernames (with or without @)
maxFollowersPerProfileIntegerNo20Number of followers to retrieve per handle

Example Input

{
"handles": ["charlidamelio", "khaby.lame", "bellapoarch"],
"maxFollowersPerProfile": 50
}

Note: If you specify maxFollowersPerProfile: 50 with 3 handles, the scraper will fetch 50 followers for EACH handle (150 total followers).

Output

For each handle, the actor returns:

FieldTypeDescription
successBooleanWhether the request was successful
handleStringThe TikTok username that was scraped
totalFollowersNumberTotal number of followers the user has
followerCountNumberNumber of followers retrieved (up to maxFollowersPerProfile)
followerListArrayArray of follower profile objects

Follower Profile Object

Each follower in the followerList contains:

  • unique_id: TikTok username
  • nickname: Display name
  • signature: Bio/description
  • follower_count: Number of followers
  • following_count: Number of accounts they follow
  • uid: Unique user ID
  • sec_uid: Secondary unique ID
  • avatar_medium: Profile picture URLs
  • region: Country/region
  • language: Account language
  • create_time: Account creation timestamp

Example Output

{
"success": true,
"handle": "charlidamelio",
"totalFollowers": 155000000,
"followerCount": 50,
"followerList": [
{
"unique_id": "user123",
"nickname": "Cool User",
"signature": "Just having fun!",
"follower_count": 1500,
"following_count": 300,
"uid": "7234567890123456789",
"sec_uid": "MS4wLjABAAAA...",
"avatar_medium": { ... },
"region": "US",
"language": "en"
}
]
}

Failed handles return an error object in the dataset:

{
"success": false,
"handle": "invalidhandle",
"error": "Error message"
}

Built with ❤️ by SociaVault