# Audit Educational YouTube Channels for Course Development

**Use case:** 

Scrape top educational YouTube channels to analyze their teaching styles, popular topics, and audience engagement. Inform the development of new online courses 

## Input

```json
{
  "channelUrls": [
    "https://www.youtube.com/@crashcourse",
    "https://www.youtube.com/@KhanAcademy",
    "https://www.youtube.com/@TEDEd"
  ],
  "maxVideos": 75,
  "sortVideosBy": "oldest",
  "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 Fast](https://apify.com/crawlerbros/youtube-channel-scraper-fast) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/youtube-channel-scraper-fast) to learn more, explore other use cases, and run it yourself.