# YouTube comments and replies scraper for launch analysis

**Use case:** 

Collect YouTube comments and replies from launch videos to analyze customer feedback, questions, objections, and engagement threads.

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "https://youtu.be/dQw4w9WgXcQ"
  ],
  "maxCommentsPerVideo": 150,
  "includeReplies": true
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "videoTitle": {
    "label": "Video Title",
    "format": "text"
  },
  "commentId": {
    "label": "Comment ID",
    "format": "text"
  },
  "text": {
    "label": "Comment",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorChannelUrl": {
    "label": "Author Channel",
    "format": "link"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "publishedTime": {
    "label": "Published",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isCreator": {
    "label": "Creator",
    "format": "boolean"
  }
}
```

## About this Actor

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