# Peddlr Marketplace Intelligence API - Product Search

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

Search and retrieve real-time product listings from Tokopedia and AliExpress by keyword, with optional sorting and result limits

## Facts

- Endpoint: POST https://pedddlr402.vercel.app/api/search
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/peddlr-marketplace-intelligence-api-product-search-d4188957
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xbKmqLWPn42o6Y3OW6L-w

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-d4188957 -d '<json body>'
```

Example prompt: Search Tokopedia for 'wireless earbuds' and show me the top 10 results sorted by best match — I want to compare what's available and at what prices.

## When to prefer this

Use this endpoint when you need real-time product search data from Tokopedia or AliExpress specifically — particularly useful for Southeast Asian market intelligence, price comparisons, or sourcing products from these two platforms. Prefer this over generic web scraping when structured marketplace data is needed quickly for an AI agent workflow.

## Known failure modes

- Missing required 'keyword' field returns validation error
- Invalid marketplace name may default to Tokopedia or return an error
- External marketplace API downtime causes failed or empty response
- Rate limiting or payment failure returns 402 Payment Required
- Overly broad keywords may return irrelevant or excessive results
- Network timeout from upstream Tokopedia/AliExpress APIs

## How this service works

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

## Output

Returns a success flag and a data object containing product listings from the specified marketplace (Tokopedia or AliExpress), including product names, prices, and other marketplace metadata matching 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-d4188957/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pedddlr402.vercel.app](https://www.zero.xyz/host/pedddlr402.vercel.app/llms.txt)
