# RuTube Video Stats Extractor

**Use case:** 

Extract views, likes, dislikes, comments, and author info from RuTube videos. Analyze engagement with structured data for multiple URLs.

## Input

```json
{
  "videoUrls": [
    "https://rutube.ru/video/f1b49adb6001bb7cf80551284925143b/"
  ],
  "channelUrls": [],
  "searchQueries": [],
  "maxVideosPerSource": 50,
  "maxItems": 1000,
  "engagementScore": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "dislikes": {
    "label": "Dislikes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "engagementRate": {
    "label": "Engagement %",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  }
}
```

## About this Actor

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