# Temu Product Trend Scraper (`glowing_glove/temu-product-trend-scraper`) Actor

Research Temu product-result signals for trend spotting, promo language, low-price positioning, and marketplace comparison workflows.

- **URL**: https://apify.com/glowing\_glove/temu-product-trend-scraper.md
- **Developed by:** [Ushba Khan](https://apify.com/glowing_glove) (community)
- **Categories:** E-commerce, Automation, Lead generation
- **Stats:** 1 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$22.00 / 1,000 processed trend keywords

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 Product Trend Scraper

Research Temu product-result signals for trend spotting, promo language, low-price positioning, and marketplace comparison workflows.

### Why use this actor?

This actor turns Temu keyword results into low-price trend research.

Ecommerce researchers can spot trend items, discount angles, and price hints for marketplace comparison.

### Best for

- Spot product trends
- Compare low-price positioning
- Research promo-heavy niches
- Build ecommerce idea lists

### Input

Use `temuKeywords` with focused values that match this actor's purpose. Use broad consumer product ideas such as `phone holder`, `home organizer`, or `garden lights`.

Good example inputs:

- `phone holder`
- `home organizer`

For larger Temu trend checks, group impulse-buy products separately from home, beauty, or pet categories.

### Output you get

The dataset is intentionally compact and designed around this actor's actual buyer workflow. The most important fields are:

- `trendSignalLevel`
- `priceRange`
- `trendSignals`
- `temuTrendItems`
- `marketUse`

Rows return trend signal level, Temu trend items, price range, and trend signals.

### Practical workflow

1. Run trend/product keywords.
2. Review trend signal level.
3. Compare price hints and trend angles.
4. Use promising ideas for deeper marketplace validation.

### Notes

- Uses Temu product search and indexed trend-result pages; the actor is for trend research, not supplier verification.

# Actor input Schema

## `temuKeywords` (type: `array`):

Temu Product Trend Scraper accepts focused inputs for this actor's exact job. Add up to 20 values. Good examples: phone holder, home organizer.

## `maxItems` (type: `integer`):

Maximum top links/items included inside each result row.

## `requestTimeoutSecs` (type: `integer`):

Timeout for each public source request in seconds.

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

How many inputs to process at the same time.

## `proxyConfiguration` (type: `object`):

Optional Apify Proxy for websites that limit cloud traffic.

## Actor input object example

```json
{
  "temuKeywords": [
    "phone holder",
    "home organizer"
  ],
  "maxItems": 10,
  "requestTimeoutSecs": 20,
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

## `summary` (type: `string`):

No description

# 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 = {
    "temuKeywords": [
        "phone holder",
        "home organizer"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("glowing_glove/temu-product-trend-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 = { "temuKeywords": [
        "phone holder",
        "home organizer",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("glowing_glove/temu-product-trend-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 '{
  "temuKeywords": [
    "phone holder",
    "home organizer"
  ]
}' |
apify call glowing_glove/temu-product-trend-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/pTZlw8xSey5ORICB1/builds/6kTVZab1M2q9fh4Ij/openapi.json
