Unofficial TikTok Followers API — Follower List
GET/api/v1/followers· paginated
List an account's followers.
| Parameter | Description | |
|---|---|---|
username | required | TikTok username, @handle, or profile URL. |
cursor | optional | Page cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response for the next. |
format | optional | Omit for the full raw objects (default). Use clean for a trimmed smart subset of each account. |
Returns
username, next_cursor, has_more, count, and a followers array. Raw TikTok objects by default; trimmed objects with format=clean.
Example Request
https://dev.omar-thing.site/api/v1/followers?username=tiktok&cursor=0&format=clean&key=YOUR_API_KEY
Example Response
{
"data": {
"count": 50,
"followers": [
{
"...": "many more raw user fields",
"aweme_count": 4,
"create_time": 1778669630,
"custom_verify": "",
"follower_count": 54,
"following_count": 107,
"nickname": "djongsam",
"region": "CM",
"sec_uid": "MS4wLjABAAAA-gBGRztDk9ZLvZf_fm9bSKtsDHHQ...",
"signature": "",
"total_favorited": 35,
"uid": "7639327790094091284",
"unique_id": "daviddjongsam"
},
{
"...": "49 more items"
}
],
"has_more": true,
"next_cursor": "eyJtYXhfY3Vyc29yIjoxNzgwOTg0Nzk0LCJtaW5f...",
"username": "tiktok"
},
"note": "Default (raw) response — full TikTok user objects (trimmed with … ; each item has many more fields). Add ?format=clean for a small subset.",
"status": "success"
}Sends a live request using your API key above.
More Profiles & Users endpoints
- Unofficial TikTok Profile API — Fetch a user's profile by username.
- Unofficial TikTok Analytics API — Audience insights for a public creator account: follower breakdown by country, age and gender, an overview for a date range, and growth milestones. Pass
videofor a single video's stats. - Unofficial TikTok Following API — List the accounts a user follows.
- Unofficial TikTok Current Region API — Get an account's current region (country) by its numeric user id.