# AgentBazaar Trending Products API

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

Returns trending products from multi-marketplace sources (eBay, AliExpress, Amazon, Etsy) filtered by category and marketplace

## Facts

- Endpoint: GET https://agent-bazaar-five.vercel.app/api/trending
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-trending-products-api-35ebf5eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Zk9K6ZCXIgWiOld5OCkT

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-api-35ebf5eb
```

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

## When to prefer this

Use this endpoint when you need to discover what products are currently trending on specific marketplaces (eBay, AliExpress, Amazon, Etsy) without a keyword query — ideal for trend monitoring, market research, or surfacing popular items in a given category.

## Known failure modes

- Invalid or unsupported marketplace name returns empty or error response
- Unknown category ID/name may return empty items array
- Exceeding rate limits or payment failure (402) blocks the request
- Network timeout from underlying Apify actor call
- Limit parameter too large may cause slow response or truncated results

## How this service works

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

## Output

An object containing an array of trending product items from the specified marketplace, along with stats, the service name, category, marketplace identifier, and endpoint info.

## 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": {
   "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-api-35ebf5eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-bazaar-five.vercel.app](https://www.zero.xyz/host/agent-bazaar-five.vercel.app/llms.txt)
