# Top Cooking Recipe Videos on YouTube by Views

**Use case:** 

Scrape top YouTube cooking videos for easy dinner recipes and meal prep ideas. Get a list of popular videos sorted by views.

## Input

```json
{
  "searchQueries": [
    "easy dinner recipes",
    "meal prep for the week"
  ],
  "type": "video",
  "sortBy": "views",
  "uploadDate": "year",
  "duration": "medium",
  "country": "US",
  "language": "en",
  "maxResultsPerQuery": 100,
  "maxResults": 0
}
```

## Output

```json
{
  "resultType": {
    "label": "Result type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "channelTitle": {
    "label": "Channel",
    "format": "string"
  },
  "viewCount": {
    "label": "View count",
    "format": "integer"
  },
  "publishedTime": {
    "label": "Published",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  }
}
```

## About this Actor

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