Unofficial TikTok Comment Replies API
GET/api/v1/comment_replies
All replies under one comment (one raw page per call, cursor-paginated). Get comment_id from /comments.
| Parameter | Description | |
|---|---|---|
video | required | Video id, or any TikTok video/photo URL (incl. short vt./vm. links). |
comment_id | required | The comment's id (cid in raw /comments, comment_id in clean). |
cursor | optional | Page cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response. |
format | optional | Omit for the raw reply objects (default). clean for a trimmed subset. |
Returns
aweme_id, comment_id, total, next_cursor, has_more, count, and a replies array (raw comment objects by default, trimmed with format=clean).
Example Request
https://dev.omar-thing.site/api/v1/comment_replies?video=7676817276326268168&comment_id=7677094717893280533&cursor=0&format=clean&key=YOUR_API_KEY
Example Response
{
"data": {
"aweme_id": "7676817276326268168",
"comment_id": "7677094717893280533",
"count": 11,
"has_more": false,
"next_cursor": "",
"replies": [
{
"...": "format=clean shown; raw objects by default",
"comment": "[Sticker] ",
"comment_id": "7677159327967642376",
"likes": 62,
"username": "…"
}
],
"total": 11
},
"status": "success"
}Sends a live request using your API key above.
More Content endpoints
- Unofficial TikTok Posts API — List the videos a user has posted (one raw page per call, cursor-paginated).
- Unofficial TikTok Comments API — Fetch the comments on a video (id or URL).
- Unofficial TikTok Stories API — Fetch a user's active stories.
- Unofficial TikTok Reposts API — List the videos a user has reposted (one raw page per call, cursor-paginated).
- Unofficial TikTok Story Highlights API — Get a user's highlights — all collections and the stories inside each.
- Unofficial TikTok Music API — Sound/music details + the videos that use it (one raw page per call, cursor-paginated). Pass a music id.
- Unofficial TikTok Hashtag API — Details of a hashtag — total views, number of videos, id and share link. Pass the hashtag name or its id.
- Unofficial TikTok Hashtag Videos API — Videos posted under a hashtag (one page per call, cursor-paginated). Pass the hashtag name or its id.