# TikTok Video Download Links

**Use case:** 

Get direct media URLs for public TikTok videos together with cover images, duration and the usual counters. Point it at creators, hashtags or single video URLs, then take the media column into whatever pipeline you use.

## Input

```json
{
  "profiles": [
    "nasa"
  ],
  "maxItems": 50,
  "maxVideosPerSource": 0,
  "includeVideos": true,
  "includeVideoDetails": true,
  "outputTypes": [
    "video"
  ],
  "minPlayCount": 0,
  "minDiggCount": 0,
  "minCommentCount": 0,
  "onlyNewOrChanged": false,
  "emitUnchanged": false,
  "compactOutput": false,
  "excludeEmptyFields": false,
  "concurrency": 4
}
```

## Output

```json
{
  "video_url": {
    "label": "Video Url",
    "format": "string"
  },
  "cover_url": {
    "label": "Cover Url",
    "format": "string"
  },
  "dynamic_cover_url": {
    "label": "Dynamic Cover Url",
    "format": "string"
  },
  "download_url": {
    "label": "Download Url",
    "format": "string"
  },
  "width": {
    "label": "Width",
    "format": "integer"
  },
  "height": {
    "label": "Height",
    "format": "integer"
  },
  "definition": {
    "label": "Definition",
    "format": "string"
  },
  "format": {
    "label": "Format",
    "format": "string"
  },
  "codec": {
    "label": "Codec",
    "format": "string"
  },
  "bitrate": {
    "label": "Bitrate",
    "format": "integer"
  },
  "file_size_bytes": {
    "label": "File Size Bytes",
    "format": "integer"
  },
  "quality_score": {
    "label": "Quality Score",
    "format": "integer"
  },
  "subtitle_languages": {
    "label": "Subtitle Languages",
    "format": "array"
  },
  "image_count": {
    "label": "Image Count",
    "format": "integer"
  },
  "image_urls": {
    "label": "Image Urls",
    "format": "array"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/tiktok-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
