# Discover Content Gaps from YouTube Comment Sections

**Use case:** 

Mine comments from popular videos in your industry to identify unanswered questions, common pain points, and topics users want more of. This helps in developing

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=bCio4p9mP2M",
    "https://www.youtube.com/watch?v=J_7_Lg5a_vE",
    "https://www.youtube.com/watch?v=hZ7eKxN4-b0"
  ],
  "maxComments": 150,
  "includeChapters": true,
  "includeEndscreen": true,
  "includeCards": false,
  "includeTranscriptMetadata": true,
  "includeRelatedVideos": 0,
  "proxyCountry": "US"
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "publishedDate": {
    "label": "Published",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "playabilityStatus": {
    "label": "Playability",
    "format": "text"
  },
  "isPlayable": {
    "label": "Playable",
    "format": "boolean"
  },
  "isAgeGated": {
    "label": "Age Gated",
    "format": "boolean"
  },
  "commentsDisabled": {
    "label": "Comments Disabled",
    "format": "boolean"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  }
}
```

## About this Actor

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