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

Fetches detailed product information from a given eBay, AliExpress, Amazon, or Etsy product URL using Apify actors

## Facts

- Endpoint: GET https://agent-bazaar-five.vercel.app/api/item
- Price: $0.05/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-461b8f00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_77-D2tgkrFfnmiq-YM__l

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-461b8f00
```

Example prompt: Can you pull up the product details for this eBay listing — https://www.ebay.com/itm/123456789 — and tell me the price, title, and description?

## When to prefer this

Use this endpoint when an agent needs to retrieve structured product details from a specific known product URL on eBay, AliExpress, Amazon, or Etsy. It is ideal for price comparison workflows, product research, or enriching a shopping cart with item metadata. Prefer this over general web scraping when the source is one of the four supported marketplaces and a direct product URL is available.

## Known failure modes

- Invalid or unsupported product URL returns an error
- URL from an unsupported marketplace not in eBay/AliExpress/Amazon/Etsy set may fail
- Apify actor timeout or rate limit causes delayed or missing response
- Product listing no longer exists returns empty or error item object
- Missing required 'url' parameter returns a validation error

## How this service works

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

## Output

Returns a structured object containing product item details (title, price, description, images, etc.), metadata about the request, the service name, endpoint used, and the source marketplace identifier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Full product URL from eBay, AliExpress, Amazon, or Etsy"
  },
  "marketplace": {
   "type": "string",
   "description": "Source marketplace"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "item": {
   "type": "object"
  },
  "meta": {
   "type": "object"
  },
  "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-461b8f00/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)
