All scrapers

E-commerce

Temu Scraper

temu.com

Bot detection + rate limiting Protection
Served by plugin endpoints

Temu never puts product data in the HTML a browser gets - the page builds itself through a call that refuses automation - so a normal scrape comes back empty. The dedicated plugin reads the structured document Temu serves to search engines instead, and hands back the real fields: name, price and currency, availability, rating, review count and images. Search a keyword to get product URLs straight from Temu, then resolve each to a full product. Temu meters this crawler view, so the plugin is built for targeted price checks, monitoring and comparison rather than bulk crawling.

What you can extract

  • Product name, description and brand
  • Price with its currency (follows the exit region) and availability
  • Average rating and review count
  • Product image URLs
  • Keyword search returning product URLs from Temu, optionally resolved to full products

Dedicated endpoints

/goods/temu-product

Product

One Temu product URL to full JSON - name, price, currency, availability, rating, review count and images, read from the crawler SEO document.

/goods/temu-search

Keyword search

Product URLs for a keyword taken from Temu's own search page; with details=true, resolves the top results to full product objects.

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/goods/temu-product?keyword=kids%20toys&details=true"
import requests

resp = requests.post(
    "https://api.scrapeunblocker.com/goods/temu-product",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"keyword": "kids toys", "details": "true"},
)
print(resp.text)
import { ScrapeUnblockerClient } from 'scrapeunblocker';

const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });

const results = await su.temuSearch('kids toys', {
  details: true,
});
console.log(results);

Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.

Read the API docs

Related scrapers

Start scraping this site today

Free tier included. No credit card required to test it.