# Peddlr Marketplace Compare API

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

Compares products across Tokopedia and AliExpress by keyword, returning real-time marketplace pricing and product data

## Facts

- Endpoint: POST https://pedddlr402.vercel.app/api/compare
- Price: $0.5/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-compare-api-360ed36a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uOmYHcrrs6YOiQuMN_T24

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-compare-api-360ed36a -d '<json body>'
```

Example prompt: Compare prices for 'wireless earbuds' across Tokopedia and AliExpress and show me the top 10 results so I can find the best deal.

## When to prefer this

Use this endpoint when you need to compare product prices or availability across both Tokopedia and AliExpress simultaneously, especially for Southeast Asian market research or consumer price comparison tasks. Prefer over single-marketplace APIs when cross-platform intelligence is needed.

## Known failure modes

- Missing required 'keyword' field returns validation error
- Keyword with no results returns empty data array
- Marketplace API downtime causes partial or failed results
- Rate limiting or payment failure returns 402 or 429 error
- Invalid limit value (non-integer or negative) may cause malformed request

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing product listings and pricing information from Tokopedia and AliExpress for the given keyword, allowing cross-marketplace price comparison.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "keyword"
 ],
 "properties": {
  "limit": {
   "type": "integer"
  },
  "keyword": {
   "type": "string",
   "description": "Product keyword to compare"
  }
 }
}
```

## 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-compare-api-360ed36a/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)
