EveryData platform API
Temu API
For Temu, this page covers Temu product discovery and individual product details through 2 callable views—`search`, `profile`—without merging their inputs or response scopes.
Temu begins with `search`, where `keyword` selects matching public results; the adjacent `profile` view uses `url` for the selected Temu record, leaving other capabilities unclaimed.
- Endpoint
- POST /api/v1/social
- Capabilities
- 2
- Per 1,000
- $1.389
Available capabilities
Compare the Temu actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.
| Action | Required | Optional | Delivery | Limit | Per 1,000 | Response fields |
|---|---|---|---|---|---|---|
searchSearch Use Temu | keyword | currency | Sync delivery | — | $1.39 per 1,000 requests | product_id · title · url · price · original_price · discount_pct · currency · rating · rating_scale · review_count · sold_count · sold_text · shop_id · image_url · platform |
profileProduct details Use Temu | url | country, min_price, sort | Sync delivery | — | $1.39 per 1,000 requests | product_id · title · url · price · original_price · discount_pct · currency · rating · rating_scale · review_count · sold_count · sold_text · shop_name · category · description · shipping · availability · in_stock · free_shipping · is_trending · image_url · platform |
What does each Temu action accept?
Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.
Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.
What do the Temu search parameters mean?
Use Temu search to discover Temu public results. Pass currency and keyword to Temu search; returned objects expose platform, currency, product_id, rating, review_count, title, original_price, shop_id, sold_count, image_url, sold_text, price, rating_scale, discount_pct, and url.
keywordRequired- Specifies the product search query for the search action. Catalog registration does not guarantee item availability in every region, and region access restrictions may return empty results.
currencyOptional- Sets the display currency for returned products in the search action. Allowed values are usd, eur, brl, and ils. This setting does not affect API billing or wallet settlement currencies.Allowed values:
brleurilsusd
What do the Temu profile parameters mean?
Use Temu profile to read one Temu public record. For Temu profile, url selects the Temu record. For Temu profile, supply url, min_price, sort, and country; results include product_id, availability, rating_scale, currency, sold_count, description, original_price, shop_name, discount_pct, in_stock, free_shipping, platform, price, title, category, sold_text, url, review_count, image_url, shipping, rating, and is_trending.
urlRequired- Specifies the full Temu product URL for the profile action, formatted with the item name slug and -g-ITEM_ID.html. Shortened empty slug URLs or goods.html?goods_id= formats are not supported.Temu: Verifying Product Descriptions, Merchant Details, and Transaction ChannelsTemu advises consumers to verify product images, descriptions, merchant ratings, and shipping information while completing payments through official transaction channels. Data and aggregated counts provided by this endpoint do not constitute product authentication, merchant certification, or purchasing authorization, nor do they replace the final product page.Checked
countryOptional- Provides a shared target-region code. The current profile path is determined by the supplied product URL, and the primary search builder does not map this field, so it cannot be relied on to switch regions. Registered values include at, au, be, br, ca, cz, de, es, fr, ie, it, jp, kr, mx, nl, pl, pt, se, uk (United Kingdom), and us; registration does not prove real-time access.Allowed values:
ataubebrcaczdeesfrieitjpkrmxnlplptseukus min_priceOptional- Sets the lower price filter on shared schemas. Filtering behavior is unconfirmed for the single-item profile action, and this parameter does not imply min_price support on the search action.
sortOptional- Provides product sort options on shared schemas. Because the profile action requires a direct product URL, sorting is not confirmed to have any effect in profile mode and must not be used as a search sorting parameter.Allowed values:
newestpopularprice_ascprice_descrelevance
How to use the Temu API
- 01Read the public catalog and choose a platform action.
- 02Send the platform, action, and required parameters to POST /api/v1/social.
- 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
- 04Store the structured response fields needed by your application.
curl -X POST https://api.everyinfra.com/api/v1/social \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"platform":"temu","action":"search","params":{"keyword":"<keyword>"}}'
Temu API questions
What can I retrieve with the Temu API?
Set platform to temu. The current catalog lists search and product details. These action names identify different Temu objects or views; they are not interchangeable search modes.
Which input starts a Temu `search` request?
Specifies the product search query for the search action. Catalog registration does not guarantee item availability in every region, and region access restrictions may return empty results. Send it as keyword inside params.
Which fields can Temu `search` return?
Its declared schema includes product_id, title, price, and original_price. A declared field can still be absent from an individual source record, and every other action has its own field list.
Does every Temu action return immediately?
No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.