# YouTube Video Search Scraper - React Tutorial

**Use case:** 

Scrape YouTube search results with video title, URL, channel, views, duration, thumbnail, and publish date. Export to JSON or CSV.

## Input

```json
{
  "searchQueries": [
    "react tutorial"
  ],
  "maxItems": 5,
  "sortBy": "relevance",
  "uploadDate": "any",
  "videoDuration": "any",
  "videoType": "video"
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "url": {
    "label": "Watch URL",
    "format": "link"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "channelSubscribers": {
    "label": "Subscribers",
    "format": "number"
  },
  "channelVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "durationText": {
    "label": "Duration",
    "format": "text"
  },
  "isShort": {
    "label": "Is Short",
    "format": "boolean"
  },
  "publishedAt": {
    "label": "Published Date",
    "format": "date"
  },
  "publishedTimeText": {
    "label": "Published (Relative)",
    "format": "text"
  },
  "transcriptAvailable": {
    "label": "Has Transcript",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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