# Scrape Video Details by URL - TikTok

**Use case:** 

Scrape TikTok video details by URL with author, description, plays, likes, comments, shares and music. Export to JSON, CSV or Excel.

## Input

```json
{
  "profiles": [
    "tiktok",
    "https://www.tiktok.com/@spacex"
  ],
  "videoUrls": [
    "https://www.tiktok.com/@nasa.etw/video/7633321198176210190"
  ],
  "hashtags": [
    "space",
    "nasa"
  ],
  "searchQueries": [
    "mars rover",
    "space launch"
  ],
  "searchType": "video",
  "maxItems": 100,
  "maxVideosPerProfile": 0,
  "includeVideoDetails": false,
  "commentsPerVideo": 0,
  "enrichBioLink": false,
  "monitorMode": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "headful": true,
  "debugMode": false
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "videoId": {
    "label": "Video ID"
  },
  "url": {
    "label": "Video URL"
  },
  "authorUsername": {
    "label": "Author"
  },
  "description": {
    "label": "Description"
  },
  "createTimeISO": {
    "label": "Created"
  },
  "playCount": {
    "label": "Plays"
  },
  "diggCount": {
    "label": "Likes"
  },
  "commentCount": {
    "label": "Comments"
  },
  "shareCount": {
    "label": "Shares"
  },
  "collectCount": {
    "label": "Saves"
  },
  "durationSec": {
    "label": "Duration (s)"
  },
  "musicTitle": {
    "label": "Music"
  },
  "hashtags": {
    "label": "Hashtags"
  },
  "coverUrl": {
    "label": "Cover"
  }
}
```

## About this Actor

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