# YouTube Bulk Comment Export for Video Lists

**Use case:** 

Collect up to 100 comments per video from a list of YouTube links. Get detailed data including author, text, and likes without any API or login.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    },
    {
      "url": "https://www.youtube.com/watch?v=jNQXAC9IVRw"
    }
  ],
  "maxCommentsPerVideo": 100,
  "sort": "top",
  "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.