# TikTok Video URL Details Scraper

**Use case:** 

Extract TikTok video details from direct URLs including descriptions, authors, plays, likes, comments, shares, saves, and duration.

## Input

```json
{
  "mode": "videoUrls",
  "usernames": [
    "charlidamelio"
  ],
  "videoUrls": [
    "https://www.tiktok.com/@khaby.lame/video/7025640067309924614"
  ],
  "maxVideos": 10
}
```

## Output

```json
{
  "coverUrl": {
    "label": "Cover",
    "format": "image"
  },
  "id": {
    "label": "Video ID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "authorUsername": {
    "label": "Author",
    "format": "text"
  },
  "playCount": {
    "label": "Play count",
    "format": "number"
  },
  "diggCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comment count",
    "format": "number"
  },
  "shareCount": {
    "label": "Share count",
    "format": "number"
  },
  "collectCount": {
    "label": "Saves",
    "format": "number"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "text"
  },
  "createTime": {
    "label": "Created",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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