# Monitor Competitor YouTube Video Engagement & Sentiment

**Use case:** 

Extract comments from competitor's latest YouTube videos to gauge audience reaction, identify trending topics, and uncover their content strategy. Gain competit

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=aBC123XYZ45",
    "https://www.youtube.com/watch?v=fGH678JKL90",
    "https://www.youtube.com/watch?v=mNO123PQR45"
  ],
  "maxComments": 300,
  "includeReplies": false,
  "maxRepliesPerComment": 5,
  "sortBy": "newest"
}
```

## Output

```json
{
  "commentId": {
    "label": "Comment ID",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "publishedTimeText": {
    "label": "Published",
    "format": "text"
  },
  "isReply": {
    "label": "Is Reply",
    "format": "boolean"
  },
  "videoTitle": {
    "label": "Video",
    "format": "text"
  }
}
```

## About this Actor

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