# YouTube Keyword Video Search

**Use case:** 

Search YouTube by keyword and extract video titles, URLs, channels, views, likes, thumbnails, durations, and publish dates.

## Input

```json
{
  "searchQueries": [
    "javascript tutorial",
    "python web scraping"
  ],
  "maxResults": 25,
  "maxComments": 0,
  "sortBy": "relevance",
  "language": "en",
  "country": "US"
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "channelName": {
    "label": "Channel"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "duration": {
    "label": "Duration"
  },
  "publishedAt": {
    "label": "Published"
  },
  "category": {
    "label": "Category"
  }
}
```

## About this Actor

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