# YouTube Shorts Channel Scraper

**Use case:** 

Scrape YouTube Shorts from a channel and export titles, views, likes, comments, publish dates, durations, thumbnails, and URLs.

## Input

```json
{
  "channelUrls": [
    "https://www.youtube.com/@MrBeast"
  ],
  "maxShortsPerChannel": 25,
  "maxRequestRetries": 3,
  "skipEnrichment": false
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "videoId": {
    "label": "Video ID"
  },
  "title": {
    "label": "Title"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "number"
  },
  "date": {
    "label": "Published"
  },
  "duration": {
    "label": "Duration"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "channelName": {
    "label": "Channel"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "link"
  }
}
```

## About this Actor

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