# VK Video Keyword Search Scraper

**Use case:** 

Scrape ranked public VK Video search results with titles, creators, durations, quality, views, thumbnails, IDs, and URLs.

## Input

```json
{
  "queries": [
    "mountain bike",
    "electric vehicle"
  ],
  "searchUrls": [
    {
      "url": "https://vkvideo.ru/?q=mountain%20bike"
    }
  ],
  "maxResultsPerQuery": 20,
  "maxRetries": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video",
    "format": "string"
  },
  "creatorName": {
    "label": "Creator",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "quality": {
    "label": "Quality",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "publishedText": {
    "label": "Published",
    "format": "string"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "string"
  }
}
```

## About this Actor

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