# Peddlr Marketplace Intelligence API - Deal Search

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

Searches and returns discounted product listings across Tokopedia and AliExpress based on keyword, marketplace, and minimum discount filter

## Facts

- Endpoint: POST https://pedddlr402.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-03857711
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dApS5IkmOQjovF50CjWrY

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

Example prompt: Search Peddlr for wireless earbuds on AliExpress with at least 25% discount and show me what deals are available right now.

## When to prefer this

Use this endpoint when an agent needs real-time product and deal data from Tokopedia or AliExpress, especially when filtering by discount level. Prefer this over generic web search when structured marketplace pricing data is needed for comparison or deal-finding tasks.

## Known failure modes

- Invalid or unsupported marketplace name returns error or empty results
- No products found matching keyword and discount criteria returns empty data
- Missing required keyword parameter causes request failure
- Network or upstream marketplace API timeout returns failure response
- Payment not processed causes 402 response before data is returned

## 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 matching the keyword and discount threshold, including pricing and deal details.

## 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-03857711/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)
