# AgentBazaar Multi-Marketplace Product Search

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

Search for products across eBay, AliExpress, Amazon, and Etsy simultaneously via a single unified API endpoint

## Facts

- Endpoint: GET https://agent-bazaar-five.vercel.app/api/search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-multi-marketplace-product-search-5221e581
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NYQnWab95hxkUor8mh6lw

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-multi-marketplace-product-search-5221e581
```

Example prompt: Search AgentBazaar for 'wireless noise-cancelling headphones' on Amazon and return the top 10 results.

## When to prefer this

Use this endpoint when an AI agent needs to search for real products across major consumer marketplaces (eBay, Amazon, AliExpress, Etsy) without managing individual marketplace APIs or scraping logic. Ideal for price comparison workflows, product discovery, or sourcing tasks where broad marketplace coverage is needed from a single call.

## Known failure modes

- Missing required 'q' parameter returns a 400 error
- Invalid or unsupported marketplace name may return no results or an error
- Rate limiting or Apify actor failures could cause timeouts or empty result sets
- Payment failure (x402) prevents the request from being processed
- Network issues with upstream marketplace scrapers may result in partial or empty results

## How this service works

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

## Output

Returns a JSON object with an array of product listings from the specified marketplace, including item metadata, total count of results, the original query string, and which marketplace was searched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string",
   "description": "Search keyword (e.g. 'iphone 15 case', 'wireless headphones')"
  },
  "limit": {
   "type": "integer",
   "description": "Max number of results to return"
  },
  "marketplace": {
   "type": "string",
   "description": "Target marketplace to search"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "meta": {
   "type": "object"
  },
  "items": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "query": {
   "type": "string"
  },
  "total": {
   "type": "integer"
  },
  "service": {
   "type": "string"
  },
  "endpoint": {
   "type": "string"
  },
  "marketplace": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbazaar-multi-marketplace-product-search-5221e581/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)
