# TikTok Shop Creator Lead Extractor (`avinashchby/tiktok-shop-creator-leads`) Actor

Find TikTok Shop creators and affiliates with business emails, follower stats, engagement rates, and product categories. Perfect for e-commerce brands and influencer agencies.

- **URL**: https://apify.com/avinashchby/tiktok-shop-creator-leads.md
- **Developed by:** [Avinash](https://apify.com/avinashchby) (community)
- **Categories:** Lead generation, Marketing
- **Stats:** 3 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## TikTok Shop Creator Lead Extractor

Extract TikTok creator profiles with follower counts, engagement rates, business emails, and shop links. Built for e-commerce brands, influencer agencies, and affiliate marketers who need verified creator data for outreach campaigns.

### What it does

1. **Enriches TikTok profiles** from direct URLs — follower counts, likes, following, bio, verified status
2. **Detects TikTok Shop links** — identifies creators with active shop links
3. **Scores creator quality** — composite 0-100 score based on followers, engagement, email, website
4. **Extracts business emails** — finds emails from bio links and profile text

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `mode` | string | `enrich` | `enrich` = direct URLs; `search` = Google discovery (limited) |
| `profileUrls` | array | `[@charlidamelio]` | TikTok profile URLs to enrich (enrich mode) |
| `searchQuery` | string | — | Keywords to search for creators (search mode) |
| `maxResults` | integer | `20` | Max creators to return (1-500) |
| `minFollowers` | integer | `1000` | Minimum follower threshold |
| `categories` | array | `[]` | Product category filters |
| `includeEmail` | boolean | `true` | Extract business emails from profiles |
| `extractVideos` | boolean | `false` | Include recent video URLs in output |

### Example Use Cases

- **E-commerce outreach**: Build a list of TikTok Shop creators in the beauty niche with 50K+ followers for affiliate partnerships
- **Influencer prospecting**: Extract 100 fashion creators with business emails for your brand's influencer campaign
- **Competitor research**: Map the top TikTok creators in your product category with engagement metrics

### Output Example

```json
{
  "creatorUsername": "charlidamelio",
  "displayName": "charli d'amelio",
  "followerCount": 158000000,
  "followingCount": 1399,
  "totalLikes": 12200000000,
  "videoCount": 0,
  "businessEmail": "",
  "website": "",
  "shopLink": "",
  "engagementRate": 0,
  "avgViews": 0,
  "bio": "No bio yet.",
  "profileUrl": "https://www.tiktok.com/@charlidamelio",
  "hasShop": false,
  "isVerified": false,
  "creatorScore": 40,
  "scrapedAt": "2026-05-19T04:39:46.919Z"
}
```

### Pricing

- **Free tier**: 5 creators per run
- **Pay-per-result**: $0.005 per creator lead
- **Subscription**: $49/month for unlimited runs

### Support

Found a bug or need a custom feature? Open an issue or email support.

# Actor input Schema

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

search = discover creators via Google; enrich = extract data from known TikTok profile URLs

## `searchQuery` (type: `string`):

Keyword or hashtag to search for TikTok Shop creators. Required for search mode.

## `profileUrls` (type: `array`):

Direct TikTok profile URLs to enrich. Required for enrich mode.

## `maxResults` (type: `integer`):

Maximum number of creator leads to extract

## `minFollowers` (type: `integer`):

Only include creators with at least this many followers

## `categories` (type: `array`):

Filter by product categories (optional)

## `includeEmail` (type: `boolean`):

Attempt to find business email from profile bio links

## Actor input object example

```json
{
  "mode": "enrich",
  "searchQuery": "beauty products",
  "profileUrls": [
    "https://www.tiktok.com/@charlidamelio"
  ],
  "maxResults": 20,
  "minFollowers": 1000,
  "categories": [],
  "includeEmail": true
}
```

# Actor output Schema

## `results` (type: `string`):

All extracted TikTok Shop creator leads.

# 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 = {
    "searchQuery": "beauty products"
};

// Run the Actor and wait for it to finish
const run = await client.actor("avinashchby/tiktok-shop-creator-leads").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 = { "searchQuery": "beauty products" }

# Run the Actor and wait for it to finish
run = client.actor("avinashchby/tiktok-shop-creator-leads").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 '{
  "searchQuery": "beauty products"
}' |
apify call avinashchby/tiktok-shop-creator-leads --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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