# Analyze YouTube Product Review Comments for Market Research

**Use case:** 

Scrape comments from popular YouTube product review videos to identify customer sentiment, common pain points, and feature requests. This data helps product man

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "https://www.youtube.com/watch?v=k_I8J1uLq2M",
    "https://www.youtube.com/watch?v=q6g22Yl9Kek"
  ],
  "maxComments": 500,
  "includeReplies": true,
  "maxRepliesPerComment": 10,
  "sortBy": "top"
}
```

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