# TikTok Product to 1688 Factory — One Sourcing Workflow

**Use case:** 

Step 1 of the two-step sourcing workflow: search TikTok Shop by keyword to spot what is going viral (title, price, product URL per card). Step 2 happens in our 1688 Actors — take the winning product name into the 1688 Product Scraper, or its photo into the 1688 Image Search Scraper, to find the factory behind it. This task runs step 1: 10 cards = $0.05. No-match keywords cost $0.00.

## Input

```json
{
  "productUrls": [
    "https://www.tiktok.com/view/product/1729493620818874839"
  ],
  "region": "US",
  "enrichShop": false,
  "maxTotalChargeUsd": 2
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "imageUrl": {
    "label": "Main image URL",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "price": {
    "label": "Price"
  },
  "soldCount": {
    "label": "Units sold",
    "format": "integer"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "shop": {
    "label": "Shop"
  },
  "region": {
    "label": "Region",
    "format": "string"
  },
  "dataQuality": {
    "label": "Data quality",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Shop Scraper — Keyword Search & URL Data · $0.004/$0.006](https://apify.com/crawleast/tiktok-shop-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawleast/tiktok-shop-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/crawleast/tiktok-shop-product-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
