How to Scrape Tiktok Follower List Data
This tutorial shows how to use Tiktok Follower List Data API to scrape and crawl structured Tiktok data in real-time.
Map the full follower base of any TikTok creator through our API. Extract profile lists, engagement tiers, and growth signals to support better influencer vetting decisions.
Access Tiktok Data in 3 Steps
Start crawling Tiktok follower analytics data. Follow these steps to extract social media data in minutes.
Create Your Account
Go to our registration page and make an account. It's free, no credit card, and you get credits right away to play around with.
Verify Your Email Address
You'll get a verification email, click the link in it. Once that's done, you can grab your API token from the dashboard.
Make Your First API Call
Copy the code snippet below, swap in your API key, and run it. You'll get Tiktok data back as JSON within a few seconds.
Code Sample
Here's a JavaScript example to get you going. Swap out the token and you're good, works the same way in any language that can make HTTP requests. Start collecting follower analytics data via our REST API!
| 1 | const root = 'https://ensembledata.com/apis' |
| 2 | const endpoint = '/tt/user/followers' |
| 3 | const params = { |
| 4 | "id": "6784819479778378757", |
| 5 | "secUid": "MS4wLjABAAAAQ45IcDZIqrknyl0FDjs7xDlcxlaRE7CcBx1ENxYkWK00UpeKTTlCQWKxq6t9QM6b", |
| 6 | "cursor": 0, |
| 7 | "page_token": "", |
| 8 | "token": "YOUR-TOKEN-HERE" |
| 9 | } |
| 10 | |
| 11 | const queryString = new URLSearchParams(params).toString(); |
| 12 | const url = `${root}${endpoint}?${queryString}`; |
| 13 | |
| 14 | await fetch(url) |
| 15 | .then(response => response.json()) |
| 16 | .then(data => console.log(data)) |
| 17 | .catch(error => console.error(error)); |
| 18 |
Parameters
Example Response
Explore the fields returned by this endpoint. Click a row to expand nested objects and arrays, hover a value to copy it, or use "Expand all" to see everything at once.
dataobject3 fields
followersarray1 item · schema from #0 1 item
share_infoobject9 fields
share_qrcode_urlobject4 fields
url_listarray0 items
original_musicianobject3 fields
video_iconobject4 fields
url_listarray0 items
avatar_largerobject4 fields
url_listarray2 items · schema from #0 2 items
special_accountobject1 field
avatar_168x168object4 fields
url_listarray2 items · schema from #0 2 items
cover_urlarray1 item · schema from #0 1 item
url_listarray1 item · schema from #0 1 item
avatar_300x300object4 fields
url_listarray2 items · schema from #0 2 items
avatar_mediumobject4 fields
url_listarray2 items · schema from #0 2 items
avatar_thumbobject4 fields
url_listarray2 items · schema from #0 2 items
geofencingarray0 items
Response Codes
Status codes this endpoint can return, so you can handle errors before they surprise you in production.
API Pricing
Fetch Tiktok Data at Scale
Get a clear picture of any TikTok creator's audience including follower profiles, engagement tiers, and growth trends through our influencer data API.
Follower Lists
Retrieve the full public list of accounts following any TikTok creator.
Audience Data
Analyze follower profiles to understand a creator's audience makeup.
Overlap Analysis
Compare follower lists across creators to find shared audiences.