# AgentBazaar — Product Reviews Fetcher

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

Fetches product reviews from a given product URL across supported marketplaces (eBay, AliExpress, Amazon, Etsy) via Apify actors

## Facts

- Endpoint: GET https://bazaaaaaar.vercel.app/api/reviews
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-product-reviews-fetcher-a63efdc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_guVD_YftRNAbXzETpPUjO

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-product-reviews-fetcher-a63efdc5
```

Example prompt: Pull up to 20 customer reviews for this Amazon product — https://www.amazon.com/dp/B09XYZ1234 — from the amazon marketplace so I can see what buyers are saying.

## When to prefer this

Use this endpoint when you need to extract actual customer review content from a specific product listing URL on eBay, AliExpress, Amazon, or Etsy. Prefer this over general search endpoints when you already have the product URL and want sentiment-rich review data rather than product listings.

## Known failure modes

- Invalid or unsupported product URL returns an error
- Marketplace not supported or mismatched with URL causes failure
- Product has no reviews results in empty array
- Rate limiting or Apify actor timeout for high-traffic products
- Malformed URL input causes 400-level error
- Payment not completed results in 402 response blocking access

## How this service works

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

## Output

Returns a collection of product reviews scraped from the specified marketplace product URL, including review text and associated metadata, up to the requested limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Product URL"
  },
  "limit": {
   "type": "integer",
   "description": "Max reviews to return"
  },
  "marketplace": {
   "enum": [
    "ebay",
    "aliexpress",
    "amazon",
    "etsy"
   ],
   "type": "string",
   "description": "Source marketplace"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbazaar-product-reviews-fetcher-a63efdc5/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)
