# AnyAPI Temu Search

> AnyAPI Temu Search is a paid API for AI agents from api.getanyapi.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Scrapes and returns Temu product search results for a given query via a pay-per-request API

## Facts

- Endpoint: POST https://api.getanyapi.com/v1/run/temu.search
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anyapi-temu-search-f70860a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AVDWkbtM7B50JNTjRrf5C

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability anyapi-temu-search-f70860a4 -d '<json body>'
```

Example prompt: Search Temu for 'wireless earbuds under $10' and give me the top product listings with prices and ratings.

## When to prefer this

Choose this endpoint when you need to programmatically search Temu for product listings without a subscription — ideal for price comparison tools, deal finders, or e-commerce intelligence tasks that require on-demand access to Temu's catalog at low per-call cost.

## Known failure modes

- Empty or no results if query is too niche or Temu has no matching listings
- Scraping failure or timeout if Temu's site structure changes or blocks the scraper
- Invalid or missing query parameter returns an error response
- Payment failure if USDC balance is insufficient for the $0.08 per-call fee
- Rate limiting or upstream block may return partial or empty results

## How this service works

1,200+ scraping and data APIs behind one key. Pay per request in real dollars. No subscriptions, nothing monthly, nothing to cancel.

## Output

Returns a JSON array of Temu product search results including product titles, prices, thumbnail images, ratings, review counts, and product page URLs matching the search query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "Yelp search input",
 "example": {
  "limit": 5,
  "query": "pizza",
  "location": "Chicago, IL"
 },
 "required": [
  "query",
  "location"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1,
   "description": "Maximum number of results to return (1 to 20, default 20)."
  },
  "query": {
   "type": "string",
   "description": "Search term or category to look for (e.g. sushi)."
  },
  "location": {
   "type": "string",
   "description": "City and state defining the search area (e.g. San Francisco, CA)."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anyapi-temu-search-f70860a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getanyapi.com](https://www.zero.xyz/host/api.getanyapi.com/llms.txt)
