# TikTok Video Engagement Data Extractor

**Use case:** 

Extract views, likes, comments, and shares from TikTok videos. Get structured insights and creator details for any video URL you provide for scraping.

## Input

```json
{
  "videoUrls": [
    "https://www.tiktok.com/@arianagrande/video/7405998771772984606",
    "https://www.tiktok.com/@franksinatra/video/7597521163203513655"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "Video URL",
    "format": "link"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "shares": {
    "label": "Shares",
    "format": "number"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  }
}
```

## About this Actor

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