# Bulk Scrape TikTok Comments from Many Videos

**Use case:** 

Paste many TikTok video URLs and pull every top-level comment from each one in one run. Returns commenter handles, like counts, and reply totals per video.

## Input

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

## Output

```json
{
  "type": {
    "label": "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"
  }
}
```

## 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.