# Temu Products Scraper (`goat255/temu-products-scraper`) Actor

Scrape full Temu product details by product link or id without a login. Returns title, price and price range, variants, store, rating and review count, images, and availability. Process many products per run in parallel.

- **URL**: https://apify.com/goat255/temu-products-scraper.md
- **Developed by:** [Goutam Soni](https://apify.com/goat255) (community)
- **Categories:** Automation, Lead generation, Business
- **Stats:** 6 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

$7.00 / 1,000 product scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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 Products Scraper

Extract full Temu product details at scale without a login or API key. Pass any product link or product id and get back a clean, structured record: title, price and price range, variants, store, rating and review count, images, and availability. Process many products in one run, in parallel.

### What it does

- **Product details** - title, description, availability, and the canonical product link for every input.
- **Pricing** - current price plus the minimum and maximum across variants, the original list price, and currency.
- **Variants** - per-option SKU rows with their own price and stock.
- **Store** - the selling store's name and id.
- **Social proof** - rating and review count.
- **Media** - the main thumbnail and the full image gallery.
- **Parallelism** - many products are fetched concurrently up to the limit you set.

### Input

| Field | Type | Description |
|---|---|---|
| `productUrls` | array | Product links or numeric ids. Example: `https://www.temu.com/example-product-g-601099993054113.html` or `601099993054113`. |
| `concurrency` | integer | Products processed in parallel. Default 5. |
| `proxyConfig` | object | Apify proxy. RESIDENTIAL is the default and recommended. |

`productUrls` is required and must contain at least one entry.

#### Example input

```json
{
  "productUrls": [
    "https://www.temu.com/example-product-g-601099993054113.html",
    "601100022630485"
  ],
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

### Output

Each item is tagged with a `type` of `product`.

```json
{
  "type": "product",
  "id": "601099993054113",
  "title": "An example product title",
  "url": "https://www.temu.com/an-example-product-title-g-601099993054113.html",
  "available": true,
  "price": 12.99,
  "priceMin": 12.99,
  "priceMax": 18.99,
  "currency": "USD",
  "listPrice": 29.99,
  "soldCount": 12000,
  "rating": 4.7,
  "reviewCount": 1843,
  "storeName": "Acme Co",
  "storeId": "634418000123456",
  "description": "The product description text.",
  "categories": ["Electronics", "Audio"],
  "specifications": { "Color": "Black, White", "Battery": "Rechargeable" },
  "variants": [
    { "skuId": "1717000001", "spec": "Black", "price": 12.99, "stock": 480 },
    { "skuId": "1717000002", "spec": "White", "price": 14.99, "stock": 210 }
  ],
  "thumbnail": "https://example.com/thumb.jpg",
  "images": [
    "https://example.com/1.jpg",
    "https://example.com/2.jpg"
  ],
  "scrapedAt": "2026-06-17T00:00:00.000Z"
}
```

Every field is always present. Unknown values are `null`.

### Use cases

- Build and refresh a product catalog or price feed for items you track.
- Monitor price, stock, and rating changes on a schedule.
- Collect product datasets for market and assortment research.
- Enrich a list of product links with structured fields for a spreadsheet or database.

### Notes

- A run uses the Apify proxy you select. RESIDENTIAL gives the most reliable results.
- Pass product ids directly when you have them; links are parsed down to the id automatically.
- If a product is temporarily unavailable or the link no longer resolves, the item is returned with a generic status (`upstream_unavailable`, `upstream_rate_limit`, or `not_found`) so a single failure never stops the run.
- Product listings change quickly, so a link that worked earlier may resolve to `not_found` once the item is removed.

### Privacy

To improve our actors we collect anonymized usage telemetry (run stats and input patterns). No personal account data is collected.

# Actor input Schema

## `productUrls` (type: `array`):

Temu product links or numeric product ids to scrape. A link looks like https://www.temu.com/example-product-g-601099993054113.html, or you can pass the id 601099993054113 directly.

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

Site region to read products from. The proxy exit country is matched to this region automatically for the best results. Pick the region the product links belong to.

## `concurrency` (type: `integer`):

How many products to process in parallel. Higher is faster but puts more load on proxies.

## `proxyConfig` (type: `object`):

Apify proxy. RESIDENTIAL is the default and recommended option for the most reliable results.

## Actor input object example

```json
{
  "productUrls": [
    "601099993054113"
  ],
  "region": "us",
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "productUrls": [
        "601099993054113"
    ],
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("goat255/temu-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 = {
    "productUrls": ["601099993054113"],
    "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("goat255/temu-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 '{
  "productUrls": [
    "601099993054113"
  ],
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call goat255/temu-products-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,goat255/temu-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/xUYHwBYcqA0jFloL8/builds/NHKA7hQF7ZtF49qNR/openapi.json
