# TikTok Shop Seller Catalog Scraper (`thenetaji/tiktok-shop-seller-products-scraper`) Actor

Export a TikTok Shop seller's entire catalog. Every listing comes back with its price, star rating, units sold, brand, and variants — the whole range a competitor sells, in one dataset. Turn on product details to add the full page to each row.

- **URL**: https://apify.com/thenetaji/tiktok-shop-seller-products-scraper.md
- **Developed by:** [The Netaji](https://apify.com/thenetaji) (community)
- **Categories:** E-commerce, Social media, Automation
- **Stats:** 3 total users, 2 monthly users, 87.8% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.19 / 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.
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 Seller Products Scraper

The Actor collects one TikTok Shop seller's product catalog by `seller_id` and `region`, straight from the seller's storefront. Each record carries `title`, price, rating, sold count, brand, and product variants for one listing.

```json
{
  "seller_id": "7495516049083828882",
  "region": "US",
  "maxItems": 100,
  "enrichProductDetails": false
}
```

### Accepted input

`seller_id` accepts either the bare numeric ID or a shop page URL and is required. `region` is `US` only. Seller storefront pages exist on TikTok's US storefront alone — other storefronts return nothing — so no other region is offered here. `maxItems` defaults to `100` and bounds the number of products saved; `0` removes the bound. `enrichProductDetails` defaults to `false` and is described under **Full product detail** below.

### Result fields

`product_id` and `title` identify the row. `image`, `image_url`, and `transparent_image` carry the product image in TikTok's raw object form, a convenience first URL, and a transparent-background variant when one exists. `product_price_info`, `rate_info`, and `sold_info` carry the formatted price, star score and review count, and units sold. `brand_info` names the product's brand when TikTok records one, and `sku_info` lists every purchasable variant with its own SKU ID and price.

```json
{
  "product_id": "1730890193353609874",
  "title": "Colossal Bubble Mascara, get Buildable Volume and Length for Bold, Separated Lashes, for 24HR, Maybelline New York",
  "product_price_info": { "currency_name": "USD", "sale_price_format": "12.99" },
  "rate_info": { "score": 4.3, "review_count": "64013" },
  "sold_info": { "sold_count": 628436 },
  "brand_info": { "brand_name": "Maybelline New York" }
}
```

This is a trimmed, live-verified result from the Maybelline New York storefront; `product_price_info` and `sku_info` each carry more fields than shown here.

### Full product detail

A storefront row carries what the product card shows. The description, the complete variant matrix, the shop's own profile and a page of reviews with the star breakdown only exist on the product's own page. Set `enrichProductDetails` to `true` and each saved row gains `product_info`, `shop_info`, `review_info`, `categories`, `promotion_tag`, and the whole `product_detail` record, plus the product's real `name` and `seller_id`.

It costs one extra request per product, so a 500-product catalog is 500 extra requests — leave it off for a first pass, then re-run with it on for the products worth the detail. A product whose detail page cannot be read keeps its storefront row and is not charged for.

### How much of a catalog you get

Most storefronts come back in a single request: the Actor asks for as many products as `maxItems` wants, up to 150 at a time, and a shop whose catalog fits inside that reports `has_more: false` and is done.

Past 150 there is no way to page further. TikTok stops handing out a way to go further. The Actor asks again instead: already-seen `product_id`s are never saved twice within a run, and the run stops once two requests in a row add nothing new rather than repeating indefinitely. A very large catalog can therefore come back partial.

### Related Actors

For the seller's profile alone — name, rating, and follower counts — without the full catalog, use the [TikTok Shop Seller Info Scraper](https://apify.com/thenetaji/tiktok-shop-seller-info-scraper); the two share the same `seller_id` input. For a single product's full detail, use the [TikTok Shop Product Scraper](https://apify.com/thenetaji/tiktok-shop-product-scraper). For a keyword search or a category browse across many sellers, use the [TikTok Shop Search Scraper](https://apify.com/thenetaji/tiktok-shop-search-scraper) or the [TikTok Shop Category Products Scraper](https://apify.com/thenetaji/tiktok-shop-category-products-scraper).

# Actor input Schema

## `seller_id` (type: `string`):

A TikTok Shop shop link, or a seller ID.

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

United States only. TikTok publishes this page for its US storefront alone, so other storefronts return nothing and are not offered here.

## `maxItems` (type: `integer`):

Maximum number of products to save. Set 0 for no limit.

## `enrichProductDetails` (type: `boolean`):

Add the full product page to every row — description, all variants, shop profile, a page of reviews with the star breakdown, and the category path. This makes one extra request per product.

## Actor input object example

```json
{
  "seller_id": "7495516049083828882",
  "region": "US",
  "maxItems": 20,
  "enrichProductDetails": false
}
```

# Actor output Schema

## `dataset` (type: `string`):

All records scraped by this run

# 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 = {
    "seller_id": "7495516049083828882",
    "maxItems": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("thenetaji/tiktok-shop-seller-products-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 = {
    "seller_id": "7495516049083828882",
    "maxItems": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("thenetaji/tiktok-shop-seller-products-scraper").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 '{
  "seller_id": "7495516049083828882",
  "maxItems": 20
}' |
apify call thenetaji/tiktok-shop-seller-products-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,thenetaji/tiktok-shop-seller-products-scraper"
        }
    }
}

```

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/4IyFKBMwhy6XjVJtv/builds/IVqhNr8l8f4teu0W6/openapi.json
