# Peddlr Marketplace Intelligence API – Deal Search

> Peddlr Marketplace Intelligence API – Deal Search 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-15).

Searches and returns discounted product listings across Tokopedia and AliExpress based on keyword and minimum discount threshold

## Facts

- Endpoint: POST https://pudlur.vercel.app/api/deals
- 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-deal-search-7008fe0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1PZvvHoDaWIbMpdPlRwSn

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-deal-search-7008fe0a -d '<json body>'
```

Example prompt: Search Tokopedia for wireless earbuds with at least 20% discount and show me what deals are available right now.

## When to prefer this

Use this endpoint when you need real-time product and deal data from Tokopedia or AliExpress specifically — particularly when the user wants to filter by discount percentage. Prefer this over generic search APIs when Southeast Asian marketplace coverage or deal-hunting is the priority.

## Known failure modes

- No results found for keyword — empty data object returned with success:true
- Invalid marketplace value results in error or empty response
- Network timeout if Tokopedia or AliExpress is slow to respond
- Payment failure (402) if USDC balance is insufficient
- minDiscount too high yields no matching products

## 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 matching the keyword and discount criteria from the specified marketplace, including pricing, discount levels, and product details scraped in real time.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "keyword": {
   "type": "string"
  },
  "marketplace": {
   "enum": [
    "tokopedia",
    "aliexpress"
   ],
   "type": "string"
  },
  "minDiscount": {
   "type": "integer"
  }
 }
}
```

## 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-deal-search-7008fe0a/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)
