# Temu Product Scraper — Pricing & Product Intelligence (`yourwingman/temu-product-scraper`) Actor

Scrape Temu product data including pricing, ratings, shipping info, category structure, and detailed product specifications for e-commerce competitive intelligence and market research.

- **URL**: https://apify.com/yourwingman/temu-product-scraper.md
- **Developed by:** [Wingman](https://apify.com/yourwingman) (community)
- **Categories:** Real estate
- **Stats:** 7 total users, 5 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.00005 / actor start

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Temu Product Scraper

Scrape Temu product data including pricing, ratings, shipping info, and category structure for e-commerce competitive intelligence and market research.

### Why This Actor?

Temu is one of the fastest-growing e-commerce platforms with **zero dedicated scrapers** on the Apify Store. This actor fills that gap:

- **E-commerce Analysts**: Track competitor pricing and product trends
- **Market Researchers**: Build product catalogs for category analysis
- **Price Intelligence**: Monitor price changes and discount patterns
- **Dropshippers**: Find trending products with supplier pricing

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `searchKeywords` | string\[] | — | Keywords to search for on Temu |
| `maxResults` | integer | 50 | Max products to extract per keyword |
| `includeReviews` | boolean | true | Extract ratings and review counts |
| `includeShipping` | boolean | true | Extract shipping time estimates |
| `maxConcurrency` | integer | 3 | Max concurrent pages |
| `proxy` | object | — | Proxy config for avoiding blocks |

### Output

Each dataset entry contains:

| Field | Description |
|-------|-------------|
| `productName` | Product title |
| `productUrl` | Full URL to the product page |
| `imageUrl` | Main product image |
| `currentPrice` | Current selling price |
| `originalPrice` | Original/listed price |
| `discountPercent` | Discount percentage badge |
| `rating` | Average rating (0-5) |
| `reviewCount` | Number of reviews |
| `salesCount` | Units sold |
| `shippingInfo` | Shipping estimate |
| `category` | Product category |
| `searchKeyword` | Keyword used to find it |
| `scrapedAt` | When data was extracted |

### Example

```json
{
  "searchKeywords": ["wireless earbuds", "smart watch"],
  "maxResults": 50
}
```

# Actor input Schema

## `searchKeywords` (type: `array`):

Keywords to search for on Temu. Leave empty to browse categories.

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

Maximum number of product listings to extract per keyword.

## `includeReviews` (type: `boolean`):

Extract ratings and review counts for each product.

## `includeShipping` (type: `boolean`):

Extract shipping time estimates and costs.

## `maxConcurrency` (type: `integer`):

Maximum number of pages to process simultaneously.

## `proxy` (type: `object`):

Proxy settings for avoiding IP blocks.

## Actor input object example

```json
{
  "searchKeywords": [
    "wireless earbuds",
    "smart watch"
  ],
  "maxResults": 50,
  "includeReviews": true,
  "includeShipping": true,
  "maxConcurrency": 3,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `productName` (type: `string`):

Name/title of the product

## `productUrl` (type: `string`):

Full URL to the product page

## `imageUrl` (type: `string`):

URL of the main product image

## `currentPrice` (type: `string`):

Current selling price in USD

## `originalPrice` (type: `string`):

Original/listed price before discount in USD

## `discountPercent` (type: `string`):

Discount percentage shown on the listing

## `rating` (type: `string`):

Average product rating (0-5)

## `reviewCount` (type: `string`):

Number of ratings/reviews

## `salesCount` (type: `string`):

Number of units sold (if shown)

## `shippingInfo` (type: `string`):

Shipping time estimate and cost

## `category` (type: `string`):

Product category path

## `searchKeyword` (type: `string`):

The keyword used to find this product

## `scrapedAt` (type: `string`):

ISO timestamp of when the data was extracted

# 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 = {
    "searchKeywords": [
        "wireless earbuds",
        "smart watch"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("yourwingman/temu-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 = { "searchKeywords": [
        "wireless earbuds",
        "smart watch",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("yourwingman/temu-product-scraper").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 '{
  "searchKeywords": [
    "wireless earbuds",
    "smart watch"
  ]
}' |
apify call yourwingman/temu-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=yourwingman/temu-product-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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