# YouTube Channel Videos Scraper

**Use case:** 

Scrape a YouTube channel's recent videos by URL. Get titles, view counts, durations, publish dates and links for creator and competitor tracking.

## Input

```json
{
  "searchQueries": [
    "lofi hip hop"
  ],
  "videoUrls": [],
  "channelUrls": [
    "https://www.youtube.com/@mkbhd"
  ],
  "maxItems": 25,
  "country": "US",
  "language": "en"
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumb",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "publishedText": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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