# Peddlr Marketplace Categories API

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

Retrieves product categories available on a specified marketplace (Tokopedia or AliExpress) for browsing and analysis

## Facts

- Endpoint: POST https://pedddlr402.vercel.app/api/categories
- Price: $0.2/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-categories-api-b00c0606
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T99NcdnoNC21hJ8OzNR1e

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-categories-api-b00c0606 -d '<json body>'
```

Example prompt: Can you pull up all the product categories available on Tokopedia so I can figure out which departments to look into for my market research?

## When to prefer this

Use this endpoint when you need to discover what product categories exist on Tokopedia or AliExpress before performing product searches or competitive analysis. Ideal as a first step in a marketplace research workflow to understand the available taxonomy.

## Known failure modes

- Invalid or unsupported marketplace name returns error or empty data
- Network timeout if marketplace data source is slow
- Missing marketplace field may return unexpected results or error
- Marketplace API downtime causes failure to retrieve categories
- Response success: false with no data if marketplace is unavailable

## How this service works

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

## Output

Returns a success boolean and a data object containing the category taxonomy or list for the specified marketplace (Tokopedia or AliExpress), including category names and potentially hierarchical structure.

## Request schema (JSON Schema)

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

## 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-categories-api-b00c0606/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)
