Skip to main content
GET
/
v1
/
tiktok
/
comments
/
{comment_id}
/
replies
Get Comment Replies
curl --request GET \
  --url https://scrapebadger.com/v1/tiktok/comments/{comment_id}/replies \
  --header 'x-api-key: <api-key>'
{
  "comments": [
    {
      "id": "7234999999999999999",
      "text": "this is iconic",
      "aweme_id": "7234567890123456789",
      "parent_comment_id": null,
      "digg_count": 12000,
      "reply_count": 34,
      "create_time_utc": 1700000500,
      "create_time_at": "2023-11-14T22:21:40Z",
      "liked_by_author": true,
      "pinned_by_author": false,
      "comment_language": "en",
      "mentions": [],
      "image_urls": [],
      "author": {
        "id": "6784129854561813509",
        "sec_uid": "MS4wLjABAAAA...",
        "unique_id": "charlidamelio",
        "nickname": "charli d'amelio",
        "avatar_thumb": "https://p16-sign.tiktokcdn-us.com/avatar.jpeg",
        "signature": "no bio yet",
        "verified": true,
        "follower_count": 155600000,
        "following_count": 1300,
        "heart_count": 11800000000,
        "video_count": 2700,
        "region": "US"
      },
      "replies": []
    }
  ],
  "pagination": {
    "has_more": true,
    "cursor": "30",
    "count": 30,
    "search_id": null
  },
  "region": "US"
}
Each request costs 8 credits. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Path Parameters

comment_id
string
required

The comment id (cid) whose replies you want.

Query Parameters

video_id
string
required

The parent video/aweme id the comment belongs to.

region
string
default:US

Content region (ISO 3166-1 alpha-2). Routes the request through a proxy and signer for that locale.

count
integer
default:20

Maximum number of items to return (1-50).

Required range: 1 <= x <= 50
cursor
string

Pagination cursor — pass the pagination.cursor value from a prior response to fetch the next page. Omit for the first page.

Response

200 - application/json

Comment replies

region
string
required
comments
object[]
pagination
object

Cursor pagination metadata shared by all list endpoints.