TikTok API

TikTok Followers API

List the followers of a TikTok account by username, returning each follower's profile basics.

POST/v1/run/tiktok.followers
Uptime
100.00%
30d · 10 calls
Requests
10
30d · weekly, last 12 wks
Response
2.2s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "followers": [
      {
        "avatarUrl": "https://example.com/image.jpg",
        "followerCount": 12500,
        "followingCount": 12500,
        "nickname": "Example title",
        "region": "CA",
        "userId": "a1b2c3d4",
        "username": "alex_rivera"
      }
    ],
    "nextCursor": "example",
    "total": 12500
  },
  "found": true
}
Response interface
interface TiktokFollowersResponse {
  data: {
    followers: {
      avatarUrl: string;
      followerCount: number;
      followingCount: number;
      nickname: string;
      region: string;
      userId: string;
      username: string;
    }[];
    nextCursor: string | null;
    total: number;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/tiktok.followers
curl -X POST https://api.getanyapi.com/v1/run/tiktok.followers \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"stoolpresidente"}'
FieldTypeExample value
Request body
handlestring"stoolpresidente"TikTok username whose followers to list, without the @ prefix (e.g. stoolpresidente).
cursorstringPagination cursor from a previous response's nextCursor, to fetch the next page of followers.
Response
dataobject
data.followersobject[]
data.followers[].avatarUrlstring
data.followers[].followerCountinteger
data.followers[].followingCountinteger
data.followers[].nicknamestringPopulated whenever the provider has data for the entity.
data.followers[].regionstringPopulated whenever the provider has data for the entity.
data.followers[].userIdstringPopulated whenever the provider has data for the entity.
data.followers[].usernamestringPopulated whenever the provider has data for the entity.
data.nextCursorstringOpaque cursor for the next page of followers, or null when this lane has no more. Pass it back as cursor to continue.
data.totalinteger
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the TikTok Followers API

The AnyAPI TikTok Followers API returns TikTok followers data as normalized JSON from one POST call to /v1/run/tiktok.followers. List the followers of a TikTok account by username, returning each follower's profile basics. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of TikTok followers calls through AnyAPI succeeded, with a median response time of 2.2 seconds across 10 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List the followers of a TikTok account by username, returning each follower's profile basics. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of TikTok followers calls through AnyAPI succeeded, with a median response time of 2.2 seconds across 10 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.