GET
/tiktok/user/followersGet Followers
Get a list of followers for any TikTok user. Returns follower profiles with usernames, display names, and avatar URLs.
Quick Start
cURL
curl "https://api.creatorcrawl.com/v1/tiktok/user/followers?secUid=MS4wLjABAAAA..." \
-H "x-api-key: YOUR_API_KEY"Parameters
| Name | Type | Required | Description |
|---|---|---|---|
secUid | string | Required | Secure user ID (get from profile endpoint) |
cursor | string | Optional | Pagination cursor |
Response
JSON Response
{
"followers": [
{
"uniqueId": "follower1",
"nickname": "Fan Account",
"verified": false
}
],
"cursor": "100",
"hasMore": true
}Every request costs 1 credit. Response data is live -- never cached.
Use Cases
Audience analysis
Understand who follows a creator to evaluate audience quality and demographics.
Lookalike targeting
Find followers of competitors to build lookalike audiences for ad targeting.
Fraud detection
Analyze follower lists for bot accounts and fake engagement patterns.
Code Examples
Python
import requests
resp = requests.get(
"https://api.creatorcrawl.com/v1/tiktok/user/followers",
params={"secUid": "MS4wLjABAAAA..."},
headers={"x-api-key": "YOUR_API_KEY"},
)
for follower in resp.json()["followers"]:
print(follower["uniqueId"])JavaScript
const resp = await fetch(
"https://api.creatorcrawl.com/v1/tiktok/user/followers?secUid=MS4wLjABAAAA...",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
)
const { followers } = await resp.json()
followers.forEach(f => console.log(f.uniqueId))