# Scrape Every Comment and Reply Thread on a TikTok Video

**Use case:** 

Get every top-level comment on a TikTok video plus full reply threads. Returns commenter handle, text, like count, and parent comment links. No login.

## Input

```json
{
  "video_urls": [
    "https://www.tiktok.com/@stoolpresidente/video/7499229683859426602"
  ],
  "max_comment_pages": 3,
  "auto_fetch_replies": true,
  "min_replies_threshold": 3,
  "max_reply_pages_per_comment": 2,
  "comment_ids_to_expand": []
}
```

## Output

```json
{
  "type": {
    "label": "Row type",
    "format": "string"
  },
  "cid": {
    "label": "Comment ID",
    "format": "string"
  },
  "text": {
    "label": "Comment",
    "format": "string"
  },
  "digg_count": {
    "label": "Likes",
    "format": "integer"
  },
  "reply_comment_total": {
    "label": "Replies",
    "format": "integer"
  },
  "create_time_iso": {
    "label": "Created at",
    "format": "string"
  },
  "user": {
    "label": "User",
    "format": "object"
  },
  "parent_comment_id": {
    "label": "Parent comment",
    "format": "string"
  },
  "_metadata": {
    "label": "Metadata",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Comments & Replies Scraper [NO LOGIN] ✅](https://apify.com/unseenuser/tiktok-comments-replies-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unseenuser/tiktok-comments-replies-scraper) to learn more, explore other use cases, and run it yourself.