# YouTube Shorts Handle List Scraper

**Use case:** 

Scrape Shorts from multiple YouTube handles with video IDs, titles, view counts, thumbnails, channel names, and public URLs.

## Input

```json
{
  "channelUrls": [
    "@GoogleDevelopers",
    "@YouTube"
  ],
  "maxShortsPerChannel": 15,
  "maxRequestRetries": 3,
  "skipEnrichment": true
}
```

## 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.