# Peddlr Marketplace Intelligence API - Product Search

> Peddlr Marketplace Intelligence API - Product Search is a paid API for AI agents from 402peddlr.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search for products across Tokopedia and AliExpress marketplaces, returning real-time listings with pricing and product details.

## Facts

- Endpoint: POST https://402peddlr.vercel.app/api/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/peddlr-marketplace-intelligence-api-product-search-29a0c4e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YuZDsw_nDJxg33YeXSPc6

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-marketplace-intelligence-api-product-search-29a0c4e9 -d '<json body>'
```

Example prompt: Search Tokopedia for 'wireless earbuds' and return the top 10 results sorted by price so I can see what's available and how much they cost.

## When to prefer this

Use Peddlr when you need real-time product search data specifically from Tokopedia (Indonesia's largest marketplace) or AliExpress, particularly for Southeast Asian market research, price comparison, or product sourcing. Prefer this over generic web scrapers when you need structured marketplace data with pricing rather than raw HTML, and over global product search APIs when Tokopedia-specific inventory is required.

## Known failure modes

- Missing required 'keyword' parameter returns an error response
- Invalid marketplace value may default to Tokopedia or return an error
- Network or upstream marketplace API downtime may cause failed lookups
- Exceeding rate limits or payment failures (x402) will block the request
- Very obscure keywords may return empty result sets

## 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 product listings from the specified marketplace, including product names, prices, and other listing details relevant to the search keyword.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "keyword"
 ],
 "properties": {
  "sort": {
   "enum": [
    "default",
    "price",
    "newest",
    "bestselling"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "limit": {
   "type": "integer",
   "description": "Max results (default: 20)"
  },
  "keyword": {
   "type": "string",
   "description": "Search keyword"
  },
  "marketplace": {
   "enum": [
    "tokopedia",
    "aliexpress"
   ],
   "type": "string",
   "description": "Target marketplace (default: tokopedia)"
  }
 }
}
```

## 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-marketplace-intelligence-api-product-search-29a0c4e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402peddlr.vercel.app](https://www.zero.xyz/host/402peddlr.vercel.app/llms.txt)
