# Discover current VK Clips metadata and engagement

**Use case:** 

Collect current public VK Clips with creator details, captions, engagement metrics, thumbnails, and temporary public media links.

## Input

```json
{
  "mode": "recommended",
  "clipUrls": [
    {
      "url": "https://vk.com/clip-234902882_456239861"
    }
  ],
  "maxItems": 10,
  "maxPages": 3,
  "minViews": 0,
  "minLikes": 0,
  "minComments": 0,
  "minReposts": 0,
  "includeMediaUrls": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "clipUrl": {
    "label": "Clip URL",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "comments": {
    "label": "Comments",
    "format": "integer"
  },
  "reposts": {
    "label": "Reposts",
    "format": "integer"
  },
  "durationSeconds": {
    "label": "Duration",
    "format": "integer"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "string"
  },
  "sourceMode": {
    "label": "Source mode",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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