GET/tiktok/user/followers

Get 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

NameTypeRequiredDescription
secUidstringRequiredSecure user ID (get from profile endpoint)
cursorstringOptionalPagination 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))

Related Endpoints

Explore More

Takes 60 seconds

Your agents are one config file away from six platforms.

250 free API calls. No card. Add the MCP server to Claude, Cursor, Windsurf, or Zed, or hit the REST API from any language.