# TikTok Hashtag Stats

**Use case:** 

Return the hashtag itself as a row - its video count, view count and description - instead of the videos under it. Use it to compare tags before committing a budget to one, or to track how a tag grows week over week on a schedule.

## Input

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

## Output

```json
{
  "item_type": {
    "label": "Item Type",
    "format": "string"
  },
  "hashtag_name": {
    "label": "Hashtag Name",
    "format": "string"
  },
  "hashtag_url": {
    "label": "Hashtag Url",
    "format": "string"
  },
  "view_count": {
    "label": "View Count",
    "format": "integer"
  },
  "video_count": {
    "label": "Video Count",
    "format": "integer"
  },
  "music_id": {
    "label": "Music Id",
    "format": "string"
  },
  "music_title": {
    "label": "Music Title",
    "format": "string"
  },
  "music_author": {
    "label": "Music Author",
    "format": "string"
  },
  "videos_collected": {
    "label": "Videos Collected",
    "format": "integer"
  }
}
```

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