TikTok Followers API
List the followers of a TikTok account by username, returning each follower's profile basics.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"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
}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 30dcurl -X POST https://api.getanyapi.com/v1/run/tiktok.followers \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"handle":"stoolpresidente"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| handle | string | "stoolpresidente"TikTok username whose followers to list, without the @ prefix (e.g. stoolpresidente). |
| cursor | string | Pagination cursor from a previous response's nextCursor, to fetch the next page of followers. |
| Response | ||
| data | object | |
| data.followers | object[] | |
| data.followers[].avatarUrl | string | |
| data.followers[].followerCount | integer | |
| data.followers[].followingCount | integer | |
| data.followers[].nickname | string | Populated whenever the provider has data for the entity. |
| data.followers[].region | string | Populated whenever the provider has data for the entity. |
| data.followers[].userId | string | Populated whenever the provider has data for the entity. |
| data.followers[].username | string | Populated whenever the provider has data for the entity. |
| data.nextCursor | string | Opaque cursor for the next page of followers, or null when this lane has no more. Pass it back as cursor to continue. |
| data.total | integer | |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $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.