# Find a YouTube Channel's Most Popular Videos

**Use case:** 

Rank any YouTube channel's videos by view count to see its top performers. Get titles, views, likes, comments, duration and URLs for content strategy.

## Input

```json
{
  "mode": "channelDetails",
  "searchTerms": [
    "real estate coach"
  ],
  "channelUrls": [
    "@mkbhd"
  ],
  "maxResultsPerQuery": 30,
  "videoSort": "views",
  "includeVideos": true,
  "maxVideosPerChannel": 25,
  "includeVideoStats": true,
  "enrichCreatorContacts": false,
  "country": "US",
  "language": "en",
  "monitorMode": false,
  "monitorStoreName": "youtube-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "videoId": {
    "label": "Video ID"
  },
  "title": {
    "label": "Video"
  },
  "channelTitle": {
    "label": "Channel"
  },
  "viewCount": {
    "label": "Views"
  },
  "likeCount": {
    "label": "Likes"
  },
  "commentCount": {
    "label": "Comments"
  },
  "publishedDate": {
    "label": "Published"
  },
  "publishedTimeText": {
    "label": "Published (rel.)"
  },
  "durationFormatted": {
    "label": "Duration"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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