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