# Bulk YouTube comments downloader

**Use case:** 

Pull comments from several videos at once for audience and sentiment analysis.

## Input

```json
{
  "videos": [
    "dQw4w9WgXcQ",
    "9bZkp7q19f0"
  ],
  "maxCommentsPerVideo": 500,
  "sortBy": "top",
  "concurrency": 8,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "authorName": {
    "label": "Author"
  },
  "text": {
    "label": "Comment"
  },
  "likeCount": {
    "label": "Likes"
  },
  "replyCount": {
    "label": "Replies"
  },
  "isHearted": {
    "label": "Hearted"
  },
  "authorIsVerified": {
    "label": "Verified"
  },
  "publishedTimeText": {
    "label": "Published"
  },
  "videoTitle": {
    "label": "Video"
  },
  "videoId": {
    "label": "Video ID"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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