# TikTok Shop Product & Variant Scraper (`thenetaji/tiktok-shop-product-scraper`) Actor

Get complete details for any TikTok Shop product. Paste one link or a whole list and each one comes back with its description, images, every variant and price, the seller's shop profile, recent reviews with the star breakdown, its category, and any promotions running on it.

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

## Pricing

from $5.10 / 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 Product Scraper

Get everything TikTok Shop knows about a product. Paste one product link or a whole list of them, and each comes back with its name, description, images, every purchasable variant and its price, the seller's shop profile, a page of reviews with the star breakdown, the category it sits in, and any promotions running on it.

```json
{
  "product_ids": [
    "https://shop.tiktok.com/us/pdp/1730927783781307026",
    "1729599452982906917"
  ],
  "region": "US"
}
```

### Accepted input

`product_ids` takes as many products as you want, as page links or as IDs — you can mix both in the same list. Each one is fetched separately and saved as its own row; a product that cannot be read is skipped with a note in the log rather than ending the run. `region` selects the storefront — `US`, `GB`, `SG`, `MY`, `PH`, `TH`, or `VN` — and is required because it changes the product data, price currency, and language returned, not only the display locale. Indonesia is not offered: TikTok Shop's Indonesian storefront moved to Tokopedia after the two companies merged, and that platform is not covered.

### Result fields

`product_id`, `seller_id`, and `name` identify the row. `image_url` is a direct link to the product image. `product_info` carries the full product record — name, description, images, variants, plus shipping, promotion, review, seller, safety, and availability detail. `shop_info` is the seller's storefront profile. `review_info` holds the total review count, one page of reviews, and the star distribution. `categories` is the product's own category path, from its top-level category down to its leaf — not the whole TikTok Shop category tree. `promotion_tag` lists badges shown on the page, such as free shipping. `product_detail` carries the complete record for anything not broken out into its own field.

```json
{
  "product_id": "1730927783781307026",
  "seller_id": "7495516049083828882",
  "name": "Lifter Glaze Oil Balm with Hyaluronic Acid and Hydrating Oil Blend, Lip Balm with 24HRs of Smooth, Buildable Color, Moisturizing Shine, Maybelline",
  "image_url": "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/18ba5c9f98d54d9aa1ae38d208fdb86e~tplv-fhlh96nyum-crop-webp:1125:1125.webp",
  "shop_info": {
    "shop_name": "Maybelline New York",
    "shop_rating": "4.3",
    "followers_count": "1120898"
  },
  "review_info": {
    "has_more": true,
    "total_reviews": "41885"
  },
  "categories": [
    { "category_id": "601450", "category_name": "Beauty & Personal Care" },
    { "category_id": "848648", "category_name": "Makeup" },
    { "category_id": "601534", "category_name": "Lipstick & Lip Gloss" }
  ]
}
```

This is a trimmed, live-verified result; `product_info`, `shop_info`, `review_info`, and `product_detail` each carry substantially more fields than shown here.

### Products that do not exist

A `product_id` TikTok Shop reports as not found produces no dataset record rather than an error row; the run still finishes normally with zero items saved. This is distinct from a lookup failure — a genuine upstream or network error still fails the run so it is visible in the log.

### Related Actors

For a keyword search that returns many product cards at once, use the [TikTok Shop Search Scraper](https://apify.com/thenetaji/tiktok-shop-search-scraper). For every product in one category, use the [TikTok Shop Category Products Scraper](https://apify.com/thenetaji/tiktok-shop-category-products-scraper). For a seller's profile or full catalog on its own, use the [TikTok Shop Seller Info Scraper](https://apify.com/thenetaji/tiktok-shop-seller-info-scraper) or the [TikTok Shop Seller Products Scraper](https://apify.com/thenetaji/tiktok-shop-seller-products-scraper).

# Actor input Schema

## `product_ids` (type: `array`):

One or more TikTok Shop products to fetch. Paste product page links, or product IDs — both work, and you can mix them.

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

Which TikTok Shop storefront to read. This changes the products, prices, and currency you get back — not just the display language.

## Actor input object example

```json
{
  "product_ids": [
    "1730927783781307026"
  ],
  "region": "US"
}
```

# 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 = {
    "product_ids": [
        "https://shop.tiktok.com/us/pdp/1730927783781307026"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("thenetaji/tiktok-shop-product-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 = { "product_ids": ["https://shop.tiktok.com/us/pdp/1730927783781307026"] }

# Run the Actor and wait for it to finish
run = client.actor("thenetaji/tiktok-shop-product-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 '{
  "product_ids": [
    "https://shop.tiktok.com/us/pdp/1730927783781307026"
  ]
}' |
apify call thenetaji/tiktok-shop-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,thenetaji/tiktok-shop-product-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/JCSsJvlKxjXbHcek7/builds/nd8qjcpcAGhSDII1l/openapi.json
