Discover/Temu API
live

Temu APItemu.com

Access Temu product search, homepage featured listings, and product details including price, ratings, review counts, and sales volume via a structured JSON API.

Endpoint health
verified 2d ago
search_products
get_homepage_featured
get_product_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
11d ago

What is the Temu API?

The Temu API provides 3 endpoints covering product search, homepage featured listings, and individual product details from temu.com. The search_products endpoint accepts keyword queries and returns paginated arrays of products with fields including sale price, market price, discount percentage, rating, review count, sold count, and thumbnail URL — enough to build price trackers, comparison tools, or catalog mirrors against Temu's inventory.

Try it
Number of results to return per page.
Search keyword (e.g. 'wireless earbuds', 'kitchen gadgets').
Offset for pagination. Advance by `limit` for the next page.
api.parse.bot/scraper/19417d13-c955-4a31-bfb8-d40635cf048d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/19417d13-c955-4a31-bfb8-d40635cf048d/search_products?limit=10&query=wireless+earbuds&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace temu-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Temu Catalog API — search products, browse featured, get details."""
from parse_apis.Temu_Catalog_API import Temu, ProductNotFound

client = Temu()

# Search for products by keyword, capped at 5 total items.
for product in client.products.search(query="wireless earbuds", limit=5):
    print(product.title, product.price, product.rating, product.category)

# Browse featured/trending homepage products, take the first one.
featured = client.products.featured(limit=3).first()
if featured:
    print(featured.title, featured.sold_count, featured.shipping_days, featured.ranking_label)

# Drill into a specific product by ID for full details.
top = client.products.search(query="kitchen gadgets", limit=1).first()
if top:
    try:
        detail = client.products.get(product_id=str(top.product_id))
        print(detail.title, detail.price, detail.market_price, detail.product_url, detail.mall_id)
    except ProductNotFound as exc:
        print(f"Product not found: {exc}")

print("exercised: products.search / products.featured / products.get")
All endpoints · 3 totalmissing one? ·

Full-text search over Temu's product catalog by keyword. Returns a paginated list of products with pricing, ratings, sales data, shipping info, and category rankings. Pagination is offset-based: advance `offset` by `limit` to fetch subsequent pages. Each product carries a `product_id` usable with get_product_details.

Input
ParamTypeDescription
limitintegerNumber of results to return per page.
queryrequiredstringSearch keyword (e.g. 'wireless earbuds', 'kitchen gadgets').
offsetintegerOffset for pagination. Advance by `limit` for the next page.
Response
{
  "type": "object",
  "fields": {
    "has_more": "boolean indicating if more results are available beyond this page",
    "products": "array of product objects with product_id, title, price, market_price, discount_percent, rating, review_count, sold_count, thumbnail, product_url, category, ranking_label, shipping_days, video_url, mall_id",
    "total_count": "integer count of products returned in this response"
  },
  "sample": {
    "data": {
      "has_more": true,
      "products": [
        {
          "price": "$4.73",
          "title": "Wireless Earbuds, 2026 Wireless Headphones HiFi Stereo Earphones",
          "rating": 4.8,
          "mall_id": 634418216644132,
          "category": "in Headphones, Earbuds & Accessories",
          "thumbnail": "https://img.kwcdn.com/product/fancy/0fcaa1ae.jpg",
          "video_url": null,
          "product_id": 601102740526088,
          "sold_count": "10K+ sold",
          "product_url": "https://www.temu.com/wireless-earbuds-g-601102740526088.html",
          "market_price": "$20.20",
          "review_count": "1,677",
          "ranking_label": "TOP RATED",
          "shipping_days": 5,
          "discount_percent": "76"
        }
      ],
      "total_count": 40
    },
    "status": "success"
  }
}

About the Temu API

Endpoints and What They Return

The API exposes three GET endpoints. search_products takes a required query string plus optional limit and offset integers for pagination, and returns a products array alongside total_count and a has_more boolean. Each product object carries product_id, title, price, market_price, discount_percent, rating, review_count, sold_count, and thumbnail. The get_homepage_featured endpoint uses the same pagination parameters and the same product object shape, but pulls from Temu's trending/recommended homepage surface rather than a keyword search.

Product Detail Lookup

get_product_details accepts a single product_id string — the numeric ID surfaced in products[*].product_id from either of the other endpoints — and returns a focused record with title, price, market_price, discount_percent, rating, review_count, sold_count, thumbnail, and the product_id itself as an integer. Prices are returned as formatted strings (e.g. '$5.61'), making them directly displayable without additional formatting.

Pagination and Data Shape

Both list endpoints (search_products and get_homepage_featured) use offset-based pagination via offset and limit. The has_more boolean in each response tells you whether additional pages exist, allowing straightforward sequential iteration. total_count on search_products reflects the count of products returned in the current response page, not the total catalog size for that query.

Reliability & maintenanceVerified

The Temu API is a managed, monitored endpoint for temu.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when temu.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official temu.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price changes and discount percentages on specific Temu products over time using price and market_price fields.
  • Build a product comparison tool that surfaces Temu listings alongside other marketplaces using title, price, and rating.
  • Monitor trending products by polling get_homepage_featured and tracking shifts in sold_count and review_count.
  • Seed an affiliate product feed by querying search_products with category keywords and exporting thumbnail, title, and price.
  • Analyze discount depth across a product category by collecting discount_percent values from keyword search results.
  • Power a consumer deals alert that fires when discount_percent for a tracked product_id crosses a defined threshold.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Temu have an official public developer API?+
Temu does not offer a publicly documented developer API. There is no official REST or GraphQL API with keys available to third-party developers as of mid-2025.
What does `search_products` return beyond the title and price?+
search_products returns a products array where each object includes product_id, title, price (sale price), market_price (original price), discount_percent, rating (numeric average), review_count, sold_count, and thumbnail (image URL). The has_more boolean and total_count support pagination.
Does the API return product descriptions, seller information, or variant data?+
Not currently. The three endpoints cover listing-level data: prices, ratings, counts, and thumbnails. Full product descriptions, seller profiles, shipping details, and SKU-level variants are not included. You can fork this API on Parse and revise it to add an endpoint targeting those fields.
How does pagination work across the list endpoints?+
Both search_products and get_homepage_featured accept integer offset and limit parameters. Each response includes a has_more boolean indicating whether another page of results exists. Increment offset by limit on each request to walk through result pages sequentially.
Are category-based or filter-based searches supported?+
search_products accepts only a free-text query string. Filtering by category, price range, rating threshold, or shipping options is not currently supported. You can fork this API on Parse and revise it to add a category-browse or filtered-search endpoint.
Page content last updated . Spec covers 3 endpoints from temu.com.
Related APIs in EcommerceSee all →
tiendamia.com API
Search for products across multiple countries and vendors on Tiendamia, then access detailed product information, best sellers, outlet deals, and weekly promotions. Get real-time pricing and availability data to find the best deals across different markets.
teepublic.com API
Search and browse products from TeePublic's print-on-demand marketplace, discover artists and their designs, and explore product types and featured creators. Get detailed information about specific products, artist profiles, and curated collections to find the perfect custom apparel and merchandise.
emag.ro API
Access product data from eMAG.ro, Romania's largest online retailer. Search by keyword, browse categories, retrieve product details and reviews, and look up seller information.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
uzum.uz API
Browse and search products across Uzum.uz marketplace categories, view detailed product information with customer reviews, and discover seller profiles and their product listings. Get real-time access to marketplace data including category organization, product details, pricing, and seller ratings all in one place.
gumroad.com API
Browse and extract data from the Gumroad marketplace. Search products by keyword, category, price, and rating; retrieve full product details; and look up seller profiles and their listed products.
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.
amzn.to API
Search Amazon products and retrieve detailed information including pricing, reviews, and specifications, plus discover current best sellers across categories. Get real-time product data to compare options and find trending items on Amazon.