# TikTok Shop API Alternative — Product Search

**Use case:** 

Search TikTok Shop products without the partner API: price, sold count, rating, seller and shipping. No approval needed.

## Input

```json
{
  "operation": "searchProducts",
  "productId": "1731743608991158724",
  "keyword": "phone case",
  "region": "US",
  "maxPages": 2
}
```

## Output

```json
{
  "coverUrl": {
    "label": "🖼️ Cover Image",
    "format": "string"
  },
  "productTitle": {
    "label": "📦 Product Title",
    "format": "string"
  },
  "productId": {
    "label": "🆔 Product ID",
    "format": "string"
  },
  "productUrl": {
    "label": "🔗 Product URL",
    "format": "string"
  },
  "price": {
    "label": "💵 Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "💵 Was",
    "format": "number"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "currencySymbol": {
    "label": "💲 Currency Symbol",
    "format": "string"
  },
  "discountRate": {
    "label": "🏷️ Discount Rate",
    "format": "number"
  },
  "discountFormat": {
    "label": "🏷️ Discount Label",
    "format": "string"
  },
  "priceRange": {
    "label": "💵 Price Range",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "🗣️ Rating Count",
    "format": "integer"
  },
  "soldCount": {
    "label": "📈 Units Sold",
    "format": "integer"
  },
  "skuCount": {
    "label": "🔢 SKU Count",
    "format": "integer"
  },
  "sellerName": {
    "label": "🏪 Seller Name",
    "format": "string"
  },
  "sellerId": {
    "label": "🆔 Seller ID",
    "format": "string"
  },
  "sellerUrl": {
    "label": "🔗 Seller URL",
    "format": "string"
  },
  "sellerRating": {
    "label": "⭐ Seller Rating",
    "format": "number"
  },
  "sellerSoldCount": {
    "label": "📈 Seller Units Sold",
    "format": "integer"
  },
  "sellerFollowersCount": {
    "label": "👥 Seller Followers",
    "format": "integer"
  },
  "sellerProductsCount": {
    "label": "📦 Seller Products",
    "format": "integer"
  },
  "sellerReviewCount": {
    "label": "🗣️ Seller Reviews",
    "format": "integer"
  },
  "sellerRegion": {
    "label": "🌍 Seller Region",
    "format": "string"
  },
  "sellerLogo": {
    "label": "🖼️ Seller Logo",
    "format": "string"
  },
  "businessName": {
    "label": "🏢 Business Name",
    "format": "string"
  },
  "businessAddress": {
    "label": "🏢 Business Address",
    "format": "string"
  },
  "productDescription": {
    "label": "📝 Product Description",
    "format": "string"
  },
  "gallery": {
    "label": "🖼️ Image Gallery",
    "format": "array"
  },
  "skus": {
    "label": "🧬 SKU Variants",
    "format": "array"
  },
  "sellerSubsidy": {
    "label": "💸 Seller Subsidy",
    "format": "number"
  },
  "rawProductData": {
    "label": "🧾 Raw Product Data",
    "format": "object"
  },
  "_operation": {
    "label": "🎯 Operation",
    "format": "string"
  },
  "_page": {
    "label": "📄 Page",
    "format": "integer"
  },
  "_sourceProductId": {
    "label": "🛒 Source Product ID",
    "format": "string"
  },
  "_sourceRegion": {
    "label": "🌍 Source Region",
    "format": "string"
  },
  "_fetchedAt": {
    "label": "⏰ Fetched At",
    "format": "string"
  },
  "status": {
    "label": "✅ Status",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Shop Scraper](https://apify.com/sian.agency/tiktok-shop-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/tiktok-shop-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/tiktok-shop-scraper.md

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).
