# TikTok Hashtag Video Scraper

**Use case:** 

Collect public videos posted under a hashtag with play, like, comment and share counts, caption, sound and the account behind each video. Add the hashtags, set how many rows you need, and export. Useful for tracking a challenge or a campaign tag.

## Input

```json
{
  "profiles": [
    "nasa"
  ],
  "hashtags": [
    "coffee"
  ],
  "maxItems": 100,
  "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"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "created_at": {
    "label": "Created At",
    "format": "string"
  },
  "duration_seconds": {
    "label": "Duration Seconds",
    "format": "integer"
  },
  "play_count": {
    "label": "Play Count",
    "format": "integer"
  },
  "digg_count": {
    "label": "Digg Count",
    "format": "integer"
  },
  "comment_count": {
    "label": "Comment Count",
    "format": "integer"
  },
  "share_count": {
    "label": "Share Count",
    "format": "integer"
  },
  "collect_count": {
    "label": "Collect Count",
    "format": "integer"
  },
  "repost_count": {
    "label": "Repost Count",
    "format": "integer"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "array"
  },
  "author_unique_id": {
    "label": "Author Unique Id",
    "format": "string"
  },
  "author_follower_count": {
    "label": "Author Follower Count",
    "format": "integer"
  },
  "music_title": {
    "label": "Music Title",
    "format": "string"
  },
  "content_labels": {
    "label": "Content Labels",
    "format": "array"
  },
  "location_created": {
    "label": "Location Created",
    "format": "string"
  },
  "is_ai_generated": {
    "label": "Is Ai Generated",
    "format": "boolean"
  },
  "detailed": {
    "label": "Detailed",
    "format": "boolean"
  }
}
```

## 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`).
