Get followers from a specific TikTok profile.
Endpoint
/v1/tiktok/profiles/{handle}/followers
Path
TikTok handle whose followers should be listed.
Query
Pagination cursor returned by a previous response.
Optional TikTok user id to speed up the request.
Optional flag for a smaller response with fewer fields.
const response = await fetch( "https://api.socialfetch.dev/v1/tiktok/profiles/charlidamelio/followers", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);