# AgentBazaar Multi-Marketplace Product Lookup

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

Fetches detailed product information from a specific product URL across eBay, AliExpress, Amazon, or Etsy via Apify actors

## Facts

- Endpoint: GET https://bazaaaaaar.vercel.app/api/item
- Price: $0.05/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-lookup-90f15421
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RnR-Bp2xOZcVxtWWYQSnJ

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-lookup-90f15421
```

Example prompt: Can you pull the full product details for this eBay listing — https://www.ebay.com/itm/123456789 — including the price, description, and any specs?

## When to prefer this

Choose this endpoint when you have a specific product URL from eBay, AliExpress, Amazon, or Etsy and need to programmatically extract structured product data without manually scraping. Ideal for price comparison, product research agents, shopping assistants, or any workflow that needs to enrich a known product link with details. Prefer over general search endpoints when you already have the product URL and want deep item-level detail.

## Known failure modes

- Invalid or unsupported product URL returns an error — only eBay, AliExpress, Amazon, and Etsy URLs are supported
- Product page no longer exists or listing has ended results in empty or error response
- Network timeout from Apify actor scraping the marketplace page
- Rate limiting or blocked scraping attempt by the marketplace returns a failure
- Malformed URL input causes a 400-level 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 item details (product info, pricing, description, specs), metadata, the service name, endpoint identifier, and the source marketplace (eBay, AliExpress, Amazon, or Etsy).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Full product URL from eBay, AliExpress, Amazon, or Etsy"
  },
  "marketplace": {
   "enum": [
    "ebay",
    "aliexpress",
    "amazon",
    "etsy"
   ],
   "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-lookup-90f15421/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bazaaaaaar.vercel.app](https://www.zero.xyz/host/bazaaaaaar.vercel.app/llms.txt)
