List replies to a TikTok video comment.
Endpoint
/v1/tiktok/videos/comments/replies
Query
Parent comment id from List TikTok video comments (`data.comments[].id`).
Link to the TikTok video that contains the parent comment.
Opaque cursor from a previous response to fetch the next page.
const response = await fetch( "https://api.socialfetch.dev/v1/tiktok/videos/comments/replies?commentId=7623828115408274207&url=https://www.tiktok.com/@mrbeast/video/7596844935442189598", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);