# TikTok Scraper (`compx_pro/tiktok-scraper`) Actor

Scrape TikTok videos, hashtags, profiles, and search results without API keys. Extracts video stats, view counts, likes, comments, author info, and music data. Supports hashtag pages, user profiles, direct video URLs, and search keywords.

- **URL**: https://apify.com/compx\_pro/tiktok-scraper.md
- **Developed by:** [Sonjoy Bairagee](https://apify.com/compx_pro) (community)
- **Categories:** Social media
- **Stats:** 2 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## TikTok Scraper

Extract data from TikTok — videos, hashtags, profiles, search results, comments, and music info.

### Features

- **Hashtag scraping** — Scrape videos from any hashtag (e.g. `#viral`, `#funny`)
- **Profile scraping** — Get all videos + full profile info for any TikTok account
- **Video URL scraping** — Scrape specific videos directly by URL
- **Search keyword scraping** — Search TikTok and get results for any keyword
- **Comments** — Optional: scrape top comments for each video
- **Music/Audio info** — Get song title, author, and audio details

### Input

| Field | Type | Description |
|-------|------|-------------|
| `hashtags` | `string[]` | Hashtags to scrape (without `#`) |
| `profiles` | `string[]` | Usernames to scrape (without `@`) |
| `videoUrls` | `string[]` | Direct TikTok video URLs |
| `searchKeywords` | `string[]` | Keywords to search |
| `maxVideosPerSource` | `number` | Max videos per input (default: 20) |
| `scrapeComments` | `boolean` | Whether to scrape comments (default: false) |
| `maxCommentsPerVideo` | `number` | Max comments per video (default: 20) |
| `scrapeMusic` | `boolean` | Whether to include music info (default: true) |
| `proxyConfiguration` | `object` | Proxy settings (Apify Residential recommended) |

### Output

Each result is saved to the **Dataset**. Example output for a video:

```json
{
  "type": "video",
  "sourceLabel": "hashtag:viral",
  "videoId": "7123456789012345678",
  "videoUrl": "https://www.tiktok.com/@user/video/7123456789012345678",
  "description": "This is so funny 😂 #viral #funny",
  "hashtags": ["viral", "funny"],
  "createTime": "2024-01-15T10:30:00.000Z",
  "author": {
    "uniqueId": "some_user",
    "nickname": "Some User",
    "verified": false,
    "followerCount": 125000,
    "followingCount": 300,
    "heartCount": 2500000,
    "videoCount": 87
  },
  "stats": {
    "playCount": 1500000,
    "likeCount": 85000,
    "commentCount": 1200,
    "shareCount": 4500,
    "collectCount": 3200
  },
  "video": {
    "width": 1080,
    "height": 1920,
    "duration": 30,
    "coverUrl": "https://..."
  },
  "music": {
    "title": "original sound",
    "authorName": "some_user",
    "original": true,
    "duration": 30
  },
  "comments": [
    {
      "username": "commenter1",
      "text": "This is hilarious!",
      "likeCount": "234",
      "timestamp": "2d ago"
    }
  ]
}
````

### Proxy

**Residential proxies are required.** TikTok blocks datacenter IPs aggressively. Use Apify Residential Proxy for best results.

### Cost estimate

| Action | Approx. cost |
|--------|-------------|
| 100 videos (no comments) | ~$0.50 |
| 100 videos + comments | ~$1.50 |
| 1 profile (50 videos) | ~$0.30 |

### Notes

- TikTok frequently changes its website structure. If scraped data is missing, the actor may need an update.
- Scraping is rate-limited intentionally to avoid bans.
- This actor uses **Playwright** with stealth fingerprinting to mimic real browsers.

# Actor input Schema

## `hashtags` (type: `array`):

List of TikTok hashtags (without #). Example: \['funny', 'viral']

## `profiles` (type: `array`):

List of TikTok usernames (without @). Example: \['charlidamelio']

## `videoUrls` (type: `array`):

Direct TikTok video URLs to scrape

## `searchKeywords` (type: `array`):

Keywords to search on TikTok

## `maxVideosPerSource` (type: `integer`):

Maximum number of videos to scrape per hashtag/profile/keyword

## `scrapeComments` (type: `boolean`):

Whether to scrape comments for each video (slower, costs more)

## `maxCommentsPerVideo` (type: `integer`):

Maximum number of comments to scrape per video (only if scrapeComments is true)

## `scrapeMusic` (type: `boolean`):

Whether to include music/audio data in output

## `proxyConfiguration` (type: `object`):

Proxy settings for scraping

## Actor input object example

```json
{
  "hashtags": [
    "funny",
    "viral",
    "trending"
  ],
  "profiles": [
    "charlidamelio",
    "khaby.lame"
  ],
  "videoUrls": [
    "https://www.tiktok.com/@user/video/1234567890"
  ],
  "searchKeywords": [
    "funny cats",
    "cooking recipes"
  ],
  "maxVideosPerSource": 20,
  "scrapeComments": false,
  "maxCommentsPerVideo": 20,
  "scrapeMusic": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("compx_pro/tiktok-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    } }

# Run the Actor and wait for it to finish
run = client.actor("compx_pro/tiktok-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call compx_pro/tiktok-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=compx_pro/tiktok-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "TikTok Scraper",
        "description": "Scrape TikTok videos, hashtags, profiles, and search results without API keys. Extracts video stats, view counts, likes, comments, author info, and music data. Supports hashtag pages, user profiles, direct video URLs, and search keywords.",
        "version": "1.0",
        "x-build-id": "vbK8cNDNuco4xhQOr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/compx_pro~tiktok-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-compx_pro-tiktok-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/compx_pro~tiktok-scraper/runs": {
            "post": {
                "operationId": "runs-sync-compx_pro-tiktok-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/compx_pro~tiktok-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-compx_pro-tiktok-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "hashtags": {
                        "title": "Hashtags to scrape",
                        "type": "array",
                        "description": "List of TikTok hashtags (without #). Example: ['funny', 'viral']",
                        "items": {
                            "type": "string"
                        }
                    },
                    "profiles": {
                        "title": "TikTok profiles (usernames)",
                        "type": "array",
                        "description": "List of TikTok usernames (without @). Example: ['charlidamelio']",
                        "items": {
                            "type": "string"
                        }
                    },
                    "videoUrls": {
                        "title": "TikTok video URLs",
                        "type": "array",
                        "description": "Direct TikTok video URLs to scrape",
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchKeywords": {
                        "title": "Search keywords",
                        "type": "array",
                        "description": "Keywords to search on TikTok",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxVideosPerSource": {
                        "title": "Max videos per source",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of videos to scrape per hashtag/profile/keyword",
                        "default": 20
                    },
                    "scrapeComments": {
                        "title": "Scrape comments",
                        "type": "boolean",
                        "description": "Whether to scrape comments for each video (slower, costs more)",
                        "default": false
                    },
                    "maxCommentsPerVideo": {
                        "title": "Max comments per video",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of comments to scrape per video (only if scrapeComments is true)",
                        "default": 20
                    },
                    "scrapeMusic": {
                        "title": "Scrape music/audio info",
                        "type": "boolean",
                        "description": "Whether to include music/audio data in output",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy settings for scraping"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
