# Scrape YouTube Product Review Videos

**Use case:** 

Scrape YouTube Product Review Videos for content research, competitor monitoring, and video metadata analysis.

## Input

```json
{
  "maxItems": 80,
  "urls": [
    "https://www.youtube.com/results?search_query=wireless+headphones+review"
  ]
}
```

## Output

```json
{
  "Video.Thumbnails": {
    "label": "Thumbnails",
    "format": "object"
  },
  "Video.ID": {
    "label": "Video ID",
    "format": "text"
  },
  "Video.Title": {
    "label": "Title",
    "format": "text"
  },
  "Video.UploadDate": {
    "label": "Published Date",
    "format": "date"
  },
  "Video.Channel.Name": {
    "label": "Channel",
    "format": "text"
  },
  "Video.Channel.URL": {
    "label": "Channel URL",
    "format": "link"
  },
  "Video.Duration": {
    "label": "Duration (sec)",
    "format": "number"
  },
  "Video.ViewCount": {
    "label": "Views",
    "format": "number"
  },
  "Video.LikeCount": {
    "label": "Likes",
    "format": "number"
  },
  "Video.Description": {
    "label": "Description",
    "format": "text"
  }
}
```

## About this Actor

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