# Scrape YouTube Channels for Trending Content & Market Resear

**Use case:** 

Perform in-depth market research by extracting video data from major news or industry-specific YouTube channels. Understand trending topics, audience interest, 

## Input

```json
{
  "channelUrls": [
    "https://www.youtube.com/@WSJ",
    "https://www.youtube.com/@BloombergTelevision",
    "https://www.youtube.com/@TheEconomist",
    "UCwz8yXj26jJpY7fPqf5e61g"
  ],
  "maxVideos": 200,
  "sortVideosBy": "popular",
  "includeAbout": true,
  "includePlaylists": false,
  "maxPlaylists": 20,
  "includeShorts": false,
  "maxShorts": 20,
  "includeLiveVideos": false,
  "maxLiveVideos": 20,
  "market": "US"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "publishedTimeText": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "authorMetadata.channelName": {
    "label": "Channel",
    "format": "text"
  },
  "authorMetadata.subscriberCount": {
    "label": "Subscribers",
    "format": "number"
  }
}
```

## About this Actor

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