# YouTube Channel Research Workflow

**Use case:** 

Scrape YouTube channel videos plus keyword searches to compare content, channels, views, likes, durations, and publishing cadence.

## Input

```json
{
  "searchQueries": [
    "ai product demos"
  ],
  "channelUrls": [
    "https://www.youtube.com/@GoogleDevelopers"
  ],
  "maxResults": 30,
  "maxComments": 0,
  "sortBy": "date",
  "language": "en",
  "country": "US"
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "channelName": {
    "label": "Channel"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "duration": {
    "label": "Duration"
  },
  "publishedAt": {
    "label": "Published"
  },
  "category": {
    "label": "Category"
  }
}
```

## About this Actor

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