# Export YouTube Music Video Comments for Fan Sentiment

**Use case:** 

Scrape top comments from selected music videos. Get insights into fan sentiment with up to 500 comments per video, no API key required.

## Input

```json
{
  "videos": [
    "https://www.youtube.com/watch?v=JGwWNGJdvx8",
    "https://www.youtube.com/watch?v=kffacxfA7G4"
  ],
  "sortBy": "top",
  "includeReplies": false,
  "language": "en",
  "maxCommentsPerVideo": 500,
  "maxResults": 0
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "string"
  },
  "text": {
    "label": "Comment",
    "format": "string"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "replyCount": {
    "label": "Replies",
    "format": "integer"
  },
  "publishedTime": {
    "label": "Published",
    "format": "string"
  },
  "isReply": {
    "label": "Is reply",
    "format": "boolean"
  },
  "videoTitle": {
    "label": "Video title",
    "format": "string"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  }
}
```

## About this Actor

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