Retrieves the list of followers for a TikTok account.
/api/v1/get-tiktok-user-followers
| Header | Type | Description |
|---|---|---|
Content-Type | string | Must be application/json. |
Authorization | string | Your API key (Bearer token). e.g. Bearer sk_xxx |
| Parameter | Type | Description | Required | Default |
|---|---|---|---|---|
handle | string | The TikTok user’s handle (username). | Yes | |
minTime | number | Optional cursor for pagination. Pass the minTime from a previous response to get the next page. | No | |
count | number | Number of followers to fetch per request. | No | API default |
requestSource | string | Optional. Source of the request (e.g., MAKE_DOT_COM, ZAPIER, API). | No | API |
handle is the TikTok username (e.g., stoolpresidente). You can find it in the profile URL: https://www.tiktok.com/@{handle}.Content-Type: application/jsonInvalid JSON in request body'handle' parameter is required and must be a non-empty string.The followers service could not process the handle.The followers service reported an issue.Service not configured. Please contact support.Service authentication failed. Please contact support.An unexpected server error occurred...The followers service is currently unavailable.Received invalid data structure from followers service.Error fetching followers data from the upstream service.minTime field from the response to paginate through all followers.hasMore field indicates whether there are additional pages available.total field provides the approximate total count of followers.X-RateLimit-Limit and X-RateLimit-Remaining headers in the response to monitor your usage.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.