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.

ParameterDescription
videorequiredVideo id, or any TikTok video/photo URL (incl. short vt./vm. links).
comment_idrequiredThe comment's id (cid in raw /comments, comment_id in clean).
cursoroptionalPage cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response.
formatoptionalOmit 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