Unofficial TikTok Followers API — Follower List

GET/api/v1/followers· paginated

List an account's followers.

ParameterDescription
usernamerequiredTikTok username, @handle, or profile URL.
cursoroptionalPage cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response for the next.
formatoptionalOmit 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