# Tech Review YouTube Shorts Metadata Extractor

**Use case:** 

Extract metadata from tech review YouTube Shorts. Get titles, views, likes, comments, and more from up to 50 videos related to tech reviews.

## Input

```json
{
  "channels": [
    "MrBeast"
  ],
  "searchTerm": "tech review",
  "maxResultsShorts": 50,
  "oldestPostDate": "2024-01-01",
  "sortChannelShortsBy": "NEWEST",
  "liteMode": false,
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "channel": {
    "label": "Channel",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "uploadDate": {
    "label": "Upload date",
    "format": "text"
  }
}
```

## About this Actor

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