# TikTok Scraper: Profiles, Videos, Comments & Search (`signalqub/my-actor`) Actor

Fast, zero-auth TikTok scraper. Extract user profiles, search results, viral videos, nested comments, followers, transcripts, and live streams instantly.

- **URL**: https://apify.com/signalqub/my-actor.md
- **Developed by:** [OluwaNifemi Jacob](https://apify.com/signalqub) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## 🚀 Ultimate TikTok Scraper

*Powered by [SignalQub](https://signalqub.com/endpoints/tiktok) — The premier data extraction API for enterprise social media intelligence.*

The most comprehensive, blazing-fast TikTok data extraction tool on the Apify platform. Whether you are performing competitor analysis, influencer discovery, or audience research, this scraper delivers clean, structured JSON and CSV data in seconds.

No reverse engineering, no mobile emulators, and no IP blocks. Just input a handle, URL, or keyword and extract everything.

### 🔥 Key Features & Extraction Modes

This Actor maps all complex TikTok data down to a beautiful 5-column universal format across **12 distinct extraction modes**:

1. 🔍 **Global Keyword Search:** Scrape videos globally based on any search query or trending tag.
2. 👤 **User/Creator Search:** Find creators in your niche and scrape their bios and follower counts.
3. 📊 **Profile Details & Bio:** Get deep metadata for a specific creator.
4. 🎬 **Profile Videos:** Scrape a creator's video feed with full engagement statistics.
5. 🌍 **Profile Region/Country:** Reveal the backend registered country code of any account.
6. 👥 **User Followers:** Scrape the follower list of any public account.
7. 🤝 **User Following:** See exactly who your competitors or favorite creators are following.
8. 🔴 **Live Stream Status:** Check if a user is currently broadcasting and fetch live viewer counts.
9. 📱 **Single Video Details:** Extract precise statistics (views, likes, shares, saves) for a specific video.
10. 💬 **Video Comments:** Download top comments and replies for sentiment analysis.
11. 📝 **AI Video Transcripts:** Extract full captions and speech-to-text transcripts.
12. 📂 **Collection Videos:** Scrape all videos inside a specific TikTok playlist/collection.

### 💡 Top Use Cases

- **Influencer Discovery:** Search keywords in your niche and instantly extract a list of creators, their follower counts, and contact bios.
- **Trend Monitoring:** Scrape search results sorted by "Latest" to catch viral trends before they peak.
- **Audience Mapping:** Extract the followers of your competitors to build lookalike audiences for targeted marketing.
- **Sentiment Analysis:** Scrape thousands of comments from viral product reviews to analyze consumer feedback.

### 🛠️ How to Use (Input Configuration)

1. **Extraction Mode:** Select one of the 12 modes from the dropdown.
2. **Target:** Enter your target.
   - *For Profiles/Followers:* Enter the handle (e.g., `charlidamelio`).
   - *For Videos/Comments/Collections:* Paste the full TikTok URL.
   - *For Search:* Enter your keyword.
3. **Sort By & Region (Optional):** Refine your searches or profile video scrapes by selecting "Popular" or specifying a region code (e.g., `US`).

### 🗂️ Clean, Universal Output

To make integration easy, all 12 extraction modes map their payloads into **5 universal, easy-to-read columns**:

1. **Creator / Handle:** Who published the video or wrote the comment.
2. **Content / Bio:** The video description, comment text, or user bio.
3. **Engagement:** Core metrics (views, likes, followers, replies).
4. **Link:** A direct, clickable URL back to the TikTok asset.
5. **Cover / Avatar:** High-resolution video covers or profile pictures.

### ⚡ Integration & API

You can run this scraper programmatically via API, schedule it to run daily, or trigger it via Webhooks to feed fresh TikTok data directly into your CRM, database, Zapier, or Make.com workflows.

***

#### 🌐 About the Developer

This Actor is maintained by **[SignalQub](https://signalqub.com)**. If you are a developer looking to integrate real-time TikTok, Instagram, YouTube, or Google extraction directly into your own applications, check out our highly scalable **[Social Media Scraper APIs](https://signalqub.com)**. We handle the proxies and bypass the captchas so you can focus on building.

# Actor input Schema

## `mode` (type: `string`):

Select the TikTok API endpoint you want to call.

## `target` (type: `string`):

Enter the target keyword, handle, or URL.

## `cursor` (type: `string`):

Optional pagination cursor.

## `region` (type: `string`):

Optional region code (e.g., US, GB).

## `sort` (type: `string`):

Optional sorting parameter (e.g., relevance, latest).

## Actor input object example

```json
{
  "mode": "search_keyword",
  "target": "tech tips",
  "region": "US"
}
```

# 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 = {
    "target": "tech tips"
};

// Run the Actor and wait for it to finish
const run = await client.actor("signalqub/my-actor").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 = { "target": "tech tips" }

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

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

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

```

## CLI example

```bash
echo '{
  "target": "tech tips"
}' |
apify call signalqub/my-actor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,signalqub/my-actor"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/K5cHjvnhnvF82tJlP/builds/FeJoesZQT4AldGZeO/openapi.json
