# AgentBazaar Multi-Marketplace Product Search

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

Search across eBay, AliExpress, Amazon, and Etsy simultaneously for products using a single keyword query

## Facts

- Endpoint: GET https://agentshoping.vercel.app/api/search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-multi-marketplace-product-search-95fa8a3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OraG6dPxrfsainGeLdeTh

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-95fa8a3a
```

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

## When to prefer this

Choose this endpoint when an AI agent needs to search for products across major consumer marketplaces (eBay, AliExpress, Amazon, Etsy) from a single API call, especially when comparing availability or prices across platforms or when the target marketplace is flexible.

## Known failure modes

- Missing required 'q' parameter returns a 400 error
- Invalid or unsupported marketplace value may return empty results or an error
- Apify actor timeout causes delayed or failed response
- Rate limiting or payment failure (x402) blocks access
- Query too vague returns irrelevant or empty product listings

## 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 containing an array of product listings from the specified marketplace(s), including item metadata, plus query echo, total count, service name, and marketplace label.

## 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-95fa8a3a/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)
