# AgentBazaar Trending Products Endpoint

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

Returns trending products across eBay, AliExpress, Amazon, and Etsy, optionally filtered by category and marketplace

## Facts

- Endpoint: GET https://agentshoping.vercel.app/api/trending
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-trending-products-endpoint-41146f37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l2Wpd3ecaYWOy7a4ABuhm

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-endpoint-41146f37
```

Example prompt: What are the top 10 trending products in the electronics category on Amazon right now using AgentBazaar?

## When to prefer this

Use this endpoint when an AI agent needs to discover what products are currently trending across major e-commerce marketplaces (eBay, AliExpress, Amazon, Etsy) without performing a keyword search. Ideal for shopping assistants, price comparison agents, or market research workflows that need real-time popularity signals rather than specific product lookups.

## Known failure modes

- Invalid marketplace name returns empty or error response
- Category not found on selected marketplace returns empty items array
- Limit exceeds maximum allowed returns truncated or error response
- Downstream Apify actor unavailable causes 500 or timeout
- Missing required params may return all-marketplace or uncategorized results

## How this service works

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

## Output

A JSON object containing an array of trending product items from the requested marketplace and category, along with stats, the service name, and metadata about the category and endpoint used.

## 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-endpoint-41146f37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentshoping.vercel.app](https://www.zero.xyz/host/agentshoping.vercel.app/llms.txt)
