# 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.25/call, status unknown (last checked 2026-09-14).

Search across eBay, AliExpress, Amazon, and Etsy simultaneously to find product deals matching a keyword query

## Facts

- Endpoint: GET https://agentshoping.vercel.app/api/deals
- Price: $0.25/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-7e19328c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e2iqtSwcHxFd2TTsb_jtZ

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-7e19328c
```

Example prompt: Search AgentBazaar for 'wireless noise-cancelling headphones' across all marketplaces and return the top 10 deals — I want to see what's cheapest on eBay, Amazon, AliExpress, and Etsy combined.

## When to prefer this

Choose this endpoint when an AI agent needs to compare product prices or availability across multiple major e-commerce platforms (eBay, AliExpress, Amazon, Etsy) in a single API call. Ideal for shopping assistants, deal finders, or price comparison tasks where breadth of marketplace coverage matters. Prefer this over single-platform product APIs when the user hasn't specified a single marketplace or wants the best deal regardless of platform.

## Known failure modes

- Missing required 'q' parameter returns an error
- Invalid or unsupported marketplace string may return empty results or an error
- Upstream Apify actor failure may cause timeout or empty deal array
- Payment failure (x402) prevents the request from completing
- Rate limiting may cause intermittent failures at high call volumes

## How this service works

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

## Output

Returns an array of deal objects from the queried marketplace(s), the original search query, the service name, average price across results, total deals found, total items scanned, and the marketplace queried. Each deal object contains product listing details from the targeted platform(s).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string",
   "description": "Search keyword to find deals for"
  },
  "limit": {
   "type": "integer",
   "description": "Max number of deals to return"
  },
  "marketplace": {
   "type": "string",
   "description": "Target marketplace"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "deals": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "query": {
   "type": "string"
  },
  "service": {
   "type": "string"
  },
  "avgPrice": {
   "type": "number"
  },
  "endpoint": {
   "type": "string"
  },
  "dealsFound": {
   "type": "integer"
  },
  "marketplace": {
   "type": "string"
  },
  "totalScanned": {
   "type": "integer"
  }
 }
}
```

## More

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