# AgentBazaar Trending Products API

> AgentBazaar Trending Products API is a paid API for AI agents from bazaaaaaar.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Fetches trending products from multi-marketplace sources (eBay, AliExpress, Amazon, Etsy) filtered by category and marketplace via Apify actors

## Facts

- Endpoint: GET https://bazaaaaaar.vercel.app/api/trending
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-trending-products-search-12a4371f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K3SOHhvg3W_utt0n7_fdJ

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 agentbazaar-trending-products-search-12a4371f
```

Example prompt: Show me the top 20 trending products in the electronics category on Amazon right now using AgentBazaar.

## When to prefer this

Use this endpoint when you need a quick snapshot of currently trending products across major marketplaces (eBay, AliExpress, Amazon, Etsy) without building your own scraper. Prefer this over generic search endpoints when you specifically want trending/popular items rather than keyword search results.

## Known failure modes

- Invalid or unsupported marketplace name returns empty or error response
- Unsupported category ID returns no items
- Apify actor failure causes upstream timeout or empty results
- Exceeding limit parameter may be capped silently
- Missing payment (x402) results in 402 Payment Required response

## How this service works

Multi-marketplace product search for AI agents. Search eBay, AliExpress, Amazon, and Etsy via Apify actors.

## Output

Returns a list of trending product objects from the specified marketplace and category, along with aggregate stats, the marketplace name, category filter applied, and the service identifier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max number of items to return"
  },
  "category": {
   "type": "string",
   "description": "Category ID or name to filter trending items"
  },
  "marketplace": {
   "enum": [
    "ebay",
    "aliexpress",
    "amazon",
    "etsy"
   ],
   "type": "string",
   "description": "Target marketplace"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "items": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "stats": {
   "type": "object"
  },
  "service": {
   "type": "string"
  },
  "category": {
   "type": "string"
  },
  "endpoint": {
   "type": "string"
  },
  "marketplace": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbazaar-trending-products-search-12a4371f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bazaaaaaar.vercel.app](https://www.zero.xyz/host/bazaaaaaar.vercel.app/llms.txt)
