# TikTok brand campaign comments scraper

**Use case:** 

Extract comments from selected TikTok campaign videos to review customer feedback, creator engagement, and audience questions.

## Input

```json
{
  "videoUrls": [
    "https://www.tiktok.com/@khaby.lame/video/7623088450576633119",
    "https://www.tiktok.com/@tiktok/video/7509341894561488170"
  ],
  "maxCommentsPerVideo": 75,
  "includeReplies": false,
  "maxRepliesPerComment": 20
}
```

## Output

```json
{
  "text": {
    "label": "Comment",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorId": {
    "label": "Author ID",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "replies": {
    "label": "Replies",
    "format": "number"
  },
  "createdAt": {
    "label": "Created At",
    "format": "text"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "isReply": {
    "label": "Is Reply",
    "format": "boolean"
  }
}
```

## About this Actor

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