# Peddlr Marketplace Intelligence API

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

Fetches and analyzes product data from a Tokopedia or AliExpress product page URL in real time

## Facts

- Endpoint: POST https://pedddlr402.vercel.app/api/product
- Price: $0.35/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-5d2f450c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5cFwTdZ6KQuSDm4MGuxWl

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

Example prompt: Can you pull the product details and pricing from this Tokopedia listing for me? Here's the URL: https://www.tokopedia.com/somestore/some-product

## When to prefer this

Use this endpoint when you need to extract structured product data from a specific Tokopedia or AliExpress product listing URL. It is the right choice when you already have a product page URL and want real-time price, title, or spec data from those two marketplaces specifically, rather than running a keyword search.

## Known failure modes

- Invalid or unsupported product URL returns success: false
- URL from a marketplace other than Tokopedia or AliExpress is rejected or returns empty data
- Product page is unavailable or removed, resulting in empty or error response
- Network timeout if the target marketplace is slow to respond
- Malformed URL input causes a 400-level error

## 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 structured product information scraped from the given Tokopedia or AliExpress product page, including details such as price, title, description, and other available listing metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Product page URL (Tokopedia or AliExpress)"
  }
 }
}
```

## 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-5d2f450c/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)
