Skip to content

Followers

GET /v1/tiktok/user/followers

Retrieves the follower list of a TikTok account by handle or user_id , useful for seeing who follows a creator or getting subscriber data. Returns followers, an array of user objects each with nickname, unique_id, uid, follower_count, following_count, and avatar URLs; also returns total follower count. Paginate with min_time from the previous response.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
handlestringnoTikTok handlestoolpresidente
user_idstringnoUser id. Use this for faster response times.6659752019493208069
min_timenumbernoUsed to paginate. Get 'min_time' from previous response.1605663376
trimbooleannoSet to true to get a trimmed response

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/tiktok/user/followers' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({  });
const res = await fetch(`https://api.scrapecreators.com/v1/tiktok/user/followers?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/tiktok/user/followers',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators tiktok user-followers --help

Example Response

json
{
  "followers": [
    {
      "create_time": 1585489718,
      "follower_count": 319,
      "following_count": 1375,
      "language": "en",
      "nickname": "Kelsey Levens Haskin",
      "region": "US",
      "sec_uid": "MS4wLjABAAAAG-DXjA9PmiU6daPQzr9ux9Xr8EQ_SU_STIlWxqs2huXTZR94IdbY2kpoGhiSzAxn",
      "signature": "",
      "uid": "6802639142851609605",
      "unique_id": "klh723",
      "avatar_medium": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7324817662562402310",
        "url_list": [
          "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/7324817662562402310~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ae851b19&s=COMMON_RELATION_LIST&sc=avatar&shcp=65db1d19&shp=30310797&t=223449c4&x-expires=1750374000&x-signature=VOyI618znRkoyH0BRwF3FLvnKKY%3D"
        ],
        "url_prefix": null,
        "width": 720
      }
    }
  ],
  "min_time": 1750289478,
  "total": 4424847
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.