Skip to content

Comment Replies

GET /v1/tiktok/video/comment/replies

Fetches replies to a specific TikTok comment by its ID. Returns comments, an array of comment objects each with text, user info, and create_time. Paginate with cursor from the previous response.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
comment_idstringyesTikTok comment ID. This is the cid from the comments endpoint.7623828115408274207
urlstringyesTikTok video URL. This is the url from the comments endpoint.https://www.tiktok.com/@stoolpresidente/video/7623818255903329566
cursornumbernoCursor to get more replies. Get 'cursor' from previous response.3

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/tiktok/video/comment/replies?comment_id=7623828115408274207&url=https://www.tiktok.com/@stoolpresidente/video/7623818255903329566' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({ comment_id: '7623828115408274207', url: 'https://www.tiktok.com/@stoolpresidente/video/7623818255903329566' });
const res = await fetch(`https://api.scrapecreators.com/v1/tiktok/video/comment/replies?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/tiktok/video/comment/replies',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={'comment_id': '7623828115408274207', 'url': 'https://www.tiktok.com/@stoolpresidente/video/7623818255903329566'},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators tiktok video-comment-replies --help

Example Response

json
{
  "success": true,
  "credits_remaining": 49999412244,
  "comments": [
    {
      "aweme_id": "7623818255903329566",
      "cid": "7623874021293212447",
      "collect_stat": 0,
      "comment_language": "en",
      "comment_post_item_ids": null,
      "create_time": 1775071525,
      "digg_count": 3,
      "fold_status": 0,
      "image_list": null,
      "is_author_digged": false,
      "is_comment_translatable": true,
      "is_high_purchase_intent": false,
      "label_list": null,
      "no_show": false,
      "reply_comment": null,
      "reply_id": "7623828115408274207",
      "reply_to_reply_id": "0",
      "share_info": {
        "acl": {
          "code": 1,
          "extra": "{\"is_share_handler_failed\":\"1\"}"
        },
        "desc": "",
        "title": "",
        "url": ""
      },
      "status": 1,
      "stick_position": 0,
      "text": "Brilliant",
      "text_extra": [],
      "thread_has_more": false,
      "thread_id": 4,
      "trans_btn_style": 0,
      "user": {
        "account_labels": null,
        "ad_cover_url": null,
        "advance_feature_item_order": null,
        "advanced_feature_info": null,
        "avatar_thumb": {
          "uri": "tos-useast5-avt-0068-tx/93d55c77c594984967fe43b4a657912e",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/93d55c77c594984967fe43b4a657912e~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=21a0ec0e&x-expires=1775250000&x-signature=vqdvvwo3gQAIiccDNbj%2B3KBK27Q%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5"
          ],
          "url_prefix": null
        },
        "bold_fields": null,
        "can_message_follow_status_list": null,
        "can_set_geofencing": null,
        "cha_list": null,
        "cover_url": null,
        "custom_verify": "",
        "enterprise_verify_reason": "",
        "events": null,
        "followers_detail": null,
        "geofencing": null,
        "homepage_bottom_toast": null,
        "item_list": null,
        "mutual_relation_avatars": null,
        "need_points": null,
        "nickname": "Katy",
        "platform_sync_info": null,
        "predicted_age_group": "4",
        "relative_users": null,
        "search_highlight": null,
        "sec_uid": "MS4wLjABAAAAGQCGrZCPx6snYndsBtuAIif17vTOTEfDZ9qd_9yCZlhb3iU0q19qTWYg8xXSwMng",
        "shield_edit_field_info": null,
        "type_label": null,
        "uid": "6813803505255154693",
        "unique_id": "katylynnm",
        "user_profile_guide": null,
        "user_tags": null,
        "white_cover_url": null
      },
      "user_buried": false,
      "user_digged": 0
    }
  ],
  "cursor": 6,
  "extra": {
    "fatal_item_ids": [],
    "logid": "2026040221232018E558310EA56D7D6188",
    "now": 1775165000000
  },
  "has_more": 1,
  "log_pb": {
    "impr_id": "2026040221232018E558310EA56D7D6188"
  },
  "status_code": 0,
  "status_msg": "",
  "total": 36
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.