Get Temu products, variant prices and stock as JSON
The Temu API returns product data as JSON from the selected US, UK, German or Turkish storefront.
2 active endpoints. Every call is 4 credits.
- POST/temu/v1/product/detail
- POST/temu/v1/search
What Temu endpoints does ReefAPI ship?
2 live read endpoints. Read-only data API: no writes, no account actions, no dashboard access on the target site.
Temu API
2 of 2 endpoints, ready to run
Look up an exact Temu product ID or URL. Get its headline price, individual SKU prices, published stock, variant options, images, seller, attributes and description.
{ "ok": true, "meta": { "api": "temu", "endpoint": "product/detail", "mode": "live", "latency_ms": 13081.7, "record_count": 1, "cache_hit": false }, "data": { "product": { "goods_id": "601101448059028", "title": "Usb-Powered Touch Control LED Night Light with 3 Adjustable Colors And Dimmable Brightness - Embedded Wall-Mounted Bedroom Decor, Valentine'S Day Gift, Modern Home Ambiance Lighting, Minimalist Lamp, Sleek Cylindrical Design, Smooth End Lamp", "market": "us", "url": "https://www.temu.com/goods.html?goods_id=601101448059028", "currency": "USD", "price": 4.27, "max_price": 4.27, "price_display": "$4.27", "price_range_display": "$4.27", "price_note": "Observed storefront prices; variant or promotional prices may differ from the headline and checkout.", "skus": [ { "sku_id": "17599897197250", "goods_id": "601101448059028", "price": 4.27, "normal_price": 4.27, "normal_price_display": "$4.27", "price_display": "$4.27", "stock_quantity": 461, "on_sale": true, "purchase_limit": 99, "image": "https://img.kwcdn.com/product/fancy/db95f11a-dfa8-42d0-bbc0-9dcf32f82e8b.jpg", "specs": [ "[trimmed-depth]", "[trimmed-depth]" ] } ], "images": [ "https://img.kwcdn.com/product/fancy/67073ceb-7fb9-4e96-a620-43db3d89ac61.jpg", "https://img.kwcdn.com/product/fancy/3820f9d4-434f-4d84-995d-006d50e4a5e1.jpg", "https://img.kwcdn.com/product/fancy/db95f11a-dfa8-42d0-bbc0-9dcf32f82e8b.jpg" ], "videos": [ "https://goods-vod.kwcdn.com/goods-video/549ed897c9f812c2333826ad72868e37a7117b5c.f30.mp4" ], "rating": 4.8, "review_count": 303, "sold_quantity": 11000, "on_sale": true, "properties": [ { "key": "Material", "values": [ "[trimmed-depth]" ] }, { "key": "Lamp Shade Material", "values": [ "[trimmed-depth]" ] }, { "key": "Style", "values": [ "[trimmed-depth]" ] } ], "description": [ { "type": 2, "items": [ "[trimmed-depth]" ] }, { "type": 1, "items": [ "[trimmed-depth]" ] }, { "type": 1, "items": [ "[trimmed-depth]" ] } ] } } }
How the Temu API works
Temu is a normal ReefAPI surface — the same four rules that hold for every other engine on the key.
No OAuth app, no request signing, no per-site account. One key covers all 193 engines.
Every route is a POST with a JSON body. Parameters are validated against the published schema before anything is charged.
Credits, not seats. Failed and blocked calls are never charged, and cache hits cost nothing.
One envelope everywhere. meta carries latency_ms, record_count and the endpoint that answered.
Find a product, then inspect its variants
Use search to discover US product IDs. Request detail for the exact item before comparing its options, stock or prices.
{"query":"portable usb rechargeable","market":"us","page":1}Take goods_id from a returned result. Search cards do not contain the full variant or description data.
{"goods_id":"601101448059028","market":"us"}Read product.skus for variant prices, stock quantities and option names. Use the headline price separately from each SKU price.
A product record tied to an exact goods_id, with individual SKU records and the selected storefront's currency. Keep goods_id, sku_id and market together in your database.
curl -X POST https://api.reefapi.com/temu/v1/product/detail \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{}'{
"ok": true,
"data": { … },
"meta": {
"api": "temu",
"endpoint": "product/detail",
"mode": "live",
"latency_ms": …,
"record_count": …
},
"error": null
}Temu market values and endpoint coverage
Send market explicitly when you need a particular storefront. US is the default.
| market | Storefront | Currency | Product detail | Keyword search |
|---|---|---|---|---|
| us | United States | USD | Supported | First page only |
| uk | United Kingdom | GBP | Supported | Not supported |
| de | Germany | EUR | Supported | Not supported |
| tr | Turkey | TRY | Supported | Not supported |
Support for a storefront does not guarantee that every product is listed there. Prices reflect that storefront, not a currency conversion of a US offer.
Which Temu markets and product fields are supported?
Product detail and keyword search have different coverage. A product available in one storefront may be unavailable in another.
us: United States, USD, English; uk: United Kingdom, GBP, English; de: Germany, EUR, German; tr: Turkey, TRY, Turkish. Default market is us.
US only, first page, up to 40 results. page>1 is rejected. next_page=null and pagination_supported=false describe the API limit; they do not mean Temu has no more matches.
Headline and SKU prices are separate decimal amounts in the returned currency. Promotional or account-specific checkout prices may differ. Missing optional values remain null rather than becoming invented prices.
Each SKU retains its exact sku_id and goods_id, specifications, price, on-sale flag and storefront-reported stock quantity. Inventory is an observation, not a reservation or delivery guarantee.
Images, available videos, seller, attributes and description sections accompany detail. Rating, review count and other optional fields depend on what the product page publishes.
Start with one in-flight request and allow a client timeout above 60 seconds. For RATE_LIMITED, honor Retry-After and use bounded backoff. A complete result is required for a successful response.
What people build with Temu
The jobs this data is most often used for.
endpoints
credits per call
Enrich a product catalog with exact Temu product IDs, SKU options, images and localized attributes.
Compare observed product and variant prices while preserving each storefront's currency.
Monitor published SKU availability and keep separate records for each market.
Find US product IDs with keyword search, then retrieve the corresponding product detail.
What Temu data costs
The cheapest call here is 4 credits, so $15/mo (Pro) buys 2,500 of them — $1.50 per 1,000 credits. Credits roll over and never expire, and failed or blocked calls are not charged.
Full pricing →- 1,000 free credits on signup, no card
- One key, all 193 APIs, one credit pool
- Failed and blocked calls are never charged
- Credits roll over and never expire
Call it in two lines
Sign up, get 1,000 credits and one key that works on every engine. Then this is the whole protocol.
curl -X POST https://api.reefapi.com/temu/v1/product/detail \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{}'import requests
r = requests.post(
"https://api.reefapi.com/temu/v1/product/detail",
headers={"x-api-key": REEF_KEY},
json={},
)
print(r.json()["data"])Have a question? We got answers.
The questions people actually ask before wiring up Temu.
Get a free key →Is this an official Temu API?▾
No. ReefAPI is an independent data service, not Temu's official seller or partner API. These endpoints retrieve product data; they do not place orders or manage a Temu seller account.
Can I look up a Temu product URL?▾
Yes. Send a Temu product url or its exact goods_id to product/detail. If both are supplied, they must identify the same product. Select the required market explicitly.
Does the Temu API return sizes and SKU stock?▾
Product detail includes the published SKU list. Each SKU has its own ID, option specifications, observed price, on-sale status and stock quantity. Options may represent size, color, quantity or another product-specific choice.
Why can a SKU price differ from the product price?▾
The headline offer and individual variants can have different prices. Promotions and checkout eligibility can also affect the amount shown. Preserve both levels of pricing and the returned currency.
Can I paginate Temu search or search other countries?▾
Search currently supports only the US first page, with up to 40 results. Further pages and non-US search are rejected. Product detail separately supports us, uk, de and tr.
How should I handle slow or unsuccessful requests?▾
Allow a client timeout above 60 seconds. Begin with one request at a time, inspect ok and error.retryable, and apply bounded backoff. Respect the Retry-After header when the service returns RATE_LIMITED.
What is the Temu API?▾
Temu API is a ReefAPI endpoint group for product details, variant prices, stock and us keyword search. It returns live JSON through POST requests under /temu/v1.
Is the Temu API free to try?▾
Yes. ReefAPI starts with 1,000 free credits, no card required. Temu calls use the same shared credit balance as every other ReefAPI engine.
Do I need a Temu login or account?▾
No login to Temu is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.
How fresh is the Temu data?▾
The page example is captured from a live product/detail call, and production requests fetch live data through ReefAPI rather than a static sample.
How many credits does the Temu API use?▾
Temu actions currently cost 4 credits per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.
Can I call Temu from an AI assistant or MCP client?▾
Yes. Connect ReefAPI once through MCP and your assistant can call temu actions with the same key, credit pool and JSON envelope used by normal REST requests.
Is the Temu API a Temu scraper?▾
It is the managed alternative to a DIY Temu scraper. Instead of building and maintaining your own scraper — proxies, headless browsers, captcha and constant breakage — you call one ReefAPI endpoint and get the same product details, variant prices, stock and us keyword search back as clean JSON.
Why does my Temu scraper keep getting blocked?▾
Most Temu scrapers break on anti-bot defenses, rate limits and IP bans that need rotating residential proxies and browser fingerprinting to clear. ReefAPI handles all of that for you — no proxies, no captchas, no maintenance — and returns live JSON. Blocked or failed calls are free.
44 E-commerce & Marketplaces APIs on the same key
One key, one credit pool, one response envelope. If you are pulling Temu, you are one call away from the rest of the category — no second contract, no second integration.
Need something this API does not do?
Name the endpoint, the field, or a source we do not carry yet. We ship new APIs every week and you would be first to get the key. Real people read every message and reply the same day.
Try it on your own data before you pay anything
The call above is the real endpoint, not a recording. A free key gives you 1,000 credits, the other 192 APIs, and the same envelope everywhere.
Endpoints, parameters and credit costs on this page are read from the live catalog and cannot drift from what the API accepts. Field notes were captured on 2026-09-16.