# AgentBazaar Product Reviews Fetcher

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

Fetches customer reviews for a product from a supported marketplace (eBay, AliExpress, Amazon, or Etsy) given a product URL

## Facts

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

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

Example prompt: Can you pull the first 20 customer reviews for this Amazon product — https://www.amazon.com/dp/B08N5WRWNW — so I can see what buyers are saying before I decide to stock it?

## When to prefer this

Use this endpoint when you need to programmatically retrieve customer reviews from major e-commerce marketplaces (Amazon, eBay, AliExpress, Etsy) for a specific product URL. Prefer this over manual browsing or general web scraping when you need structured review data quickly and are working across multiple marketplaces in a unified way.

## Known failure modes

- Invalid or unsupported product URL returns an error
- Marketplace not supported returns a validation error
- Product has no reviews returns an empty reviews array
- Apify actor timeout causes a delayed or failed response
- Rate limiting or scraping blocks from marketplace result in partial or no data
- Malformed URL parameter 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 collection of customer reviews for the given product URL, including review text, ratings, and reviewer metadata, scraped from the specified marketplace via Apify actors.

## 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": {
   "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-bbc298a7/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)
