# Scrape TikTok video metadata

**Use case:** 

Extract captions, likes, views, comments, music info, and creator stats from TikTok video URLs.

## Input

```json
{
  "videoUrls": [
    "https://www.tiktok.com/@apifyoffice/video/7200360993149553925",
    "https://www.tiktok.com/@olympics/video/7208589533632269574"
  ],
  "includeRelated": false,
  "maxRelatedPerVideo": 10
}
```

## Output

```json
{
  "authorHandle": {
    "label": "Author handle",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "comments": {
    "label": "Comments",
    "format": "integer"
  },
  "shares": {
    "label": "Shares",
    "format": "integer"
  },
  "duration": {
    "label": "Duration",
    "format": "integer"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "string"
  }
}
```

## About this Actor

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