# Peddlr Trending Products API

> Peddlr Trending Products API is a paid API for AI agents from pudlur.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Retrieves trending products across Tokopedia and AliExpress marketplaces, optionally filtered by category or marketplace

## Facts

- Endpoint: POST https://pudlur.vercel.app/api/trending
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/peddlr-trending-products-api-90672bee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DTWrgi13ISoaDBvg8arUt

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 peddlr-trending-products-api-90672bee -d '<json body>'
```

Example prompt: What products are trending right now in the electronics category on Tokopedia? Pull the latest data from Peddlr so I can see what's hot.

## When to prefer this

Choose this endpoint when you need real-time trending product data specifically from Tokopedia or AliExpress, particularly for Southeast Asian and Chinese marketplace intelligence. Prefer this over general search APIs when the focus is on what's currently trending rather than searching for a specific product.

## Known failure modes

- Invalid or unsupported marketplace name returns empty or error data
- Overly specific category string may return no results if unrecognized
- Payment failure (insufficient USDC) blocks request
- Vercel cold start may cause occasional slow responses
- Upstream marketplace data unavailability may cause success:false responses

## How this service works

Search, compare, and analyze products across Tokopedia and AliExpress. Real-time marketplace data for AI agents.

## Output

Returns a JSON object with a success boolean and a data object containing trending product listings from the requested marketplace(s), including product details and marketplace data points relevant to the queried category.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "category": {
   "type": "string",
   "description": "Filter by category"
  },
  "marketplace": {
   "enum": [
    "tokopedia",
    "aliexpress"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/peddlr-trending-products-api-90672bee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pudlur.vercel.app](https://www.zero.xyz/host/pudlur.vercel.app/llms.txt)
