# Monitor Comments on Brand Campaign Videos

**Use case:** 

Scrape the latest comments on your brand's YouTube campaign videos. Get authors, text, likes, and timestamps in structured data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    }
  ],
  "maxCommentsPerVideo": 100,
  "sort": "new",
  "maxItems": 100,
  "searchTerms": []
}
```

## Output

```json
{
  "author": {
    "label": "Author"
  },
  "text": {
    "label": "Comment"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "isUploader": {
    "label": "By uploader",
    "format": "boolean"
  },
  "parent": {
    "label": "Parent"
  },
  "videoTitle": {
    "label": "Video"
  },
  "videoUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Comment Scraper](https://apify.com/myagizm/youtube-comment-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/myagizm/youtube-comment-scraper) to learn more, explore other use cases, and run it yourself.