List the accounts following a TikTok user. The endpoint takes a numeric user ID and returns follower records with their usernames, avatars and profile details, alongside a total and a hasMore flag. Paging runs on count plus a time cursor carried over from the previous response, so a large follower base can be collected in ordered batches instead of a single oversized request.
curl -X GET "https://api.primeapi.co/user-followers?userid=6763595241277129734&count=50&time=" \
-H "X-PrimeAPI-Key: YOUR_API_KEY"
import requests
url = "https://api.primeapi.co/user-followers?userid=6763595241277129734&count=50&time="
headers = {"X-PrimeAPI-Key": "YOUR_API_KEY"}
response = requests.get(url, headers=headers)
print(response.json())
print("Credits left:", response.headers.get("X-PrimeAPI-Balance"))
{
"followers": [
{
"id": "7528583335321732101",
"region": "BR",
"sec_uid": "MS4wLjABAAAAOYZx1BaC9552fy0ZyOGrY2MpYv8Ztdr5BGZKZrXVpoLNU0dcpltGyZS2xAAKhaml",
"unique_id": "gustavocastro1948",
"nickname": ".",
"signature": "",
"avatar": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/2541ff14e20aba77132c775ff2c8fe6b~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=d6633e4c&x-expires=1771686000&x-signature=7%2BBTODcGwFP37SKREnSu9MuNcgs%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=65db1d19&idc=useast5",
"verified": false,
"secret": true,
"aweme_count": 0,
"following_count": 72,
"follower_count": 9,
"favoriting_count": 0,
"total_favorited": 0,
"ins_id": "",
"youtube_channel_title": "",
"youtube_channel_id": "",
"twitter_name": "",
"twitter_id": ""
},
{
"id": "7603796051556729874",
"region": "BR",
"sec_uid": "MS4wLjABAAAAr9E6n0ps2A1CsyOQsbCWuoTyNuRhw7X-8nS6Nc-ftI8WzGgO2aH-OPIqw-C_cXOX",
"unique_id": "davigamer123454",
"nickname": "DaviGamer",
"signature": "",
"avatar": "https://p16-commonlite-sign.tiktokcdn-us.com/tos-alisg-avt-0068/dda18403a88d1f258b1cf12cd89997b5~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9722&refresh_token=ff8dde19&x-expires=1771686000&x-signature=9fdG5IXxBmffjt6e6goPbAhQmho%3D&t=4d5b0474&ps=82dc5187&shp=30310797&shcp=65db1d19&idc=useast5",
"verified": false,
"secret": true,
"aweme_count": 0,
"following_count": 432,
"follower_count": 2,
"favoriting_count": 0,
"total_favorited": 23,
"ins_id": "",
"youtube_channel_title": "",
"youtube_channel_id": "",
"twitter_name": "",
"twitter_id": ""
},
{
"id": "7266178744226006021",
"region": "BR",
"sec_uid": "MS4wLjABAAAAP2o5_7iDdAlwOxiqWOykYiVfTN9P1vSr_kjhKhvXJSaYZjmi15U1Ml0vo-tJcPgZ",
"unique_id": "brainhadamidia46",
"nickname": "bryandamidia00",
"signature": "",
... (truncated)