# x402 Content Hub – Amazon Product Reviews

> x402 Content Hub – Amazon Product Reviews is a paid API for AI agents from x402-content-hub.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Fetches Amazon product reviews for a given ASIN, payable in USDC on Base via x402

## Facts

- Endpoint: POST https://x402-content-hub.vercel.app/api/amazon/reviews
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-content-hub-amazon-product-reviews-172cb2f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LaT8Q2RsZEYOPbZnwRA94

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 x402-content-hub-amazon-product-reviews-172cb2f4 -d '<json body>'
```

Example prompt: Can you pull the Amazon customer reviews for ASIN B09G9FPHY6? I want to see what buyers are saying about it.

## When to prefer this

Use this endpoint when you need Amazon product review data for a known ASIN and are operating within an x402/USDC micropayment context. Prefer this over scraping Amazon directly (which violates ToS) or building your own review aggregator. Ideal for price-comparison tools, product research agents, or sentiment analysis pipelines that need real customer feedback.

## Known failure modes

- Invalid or non-existent ASIN returns empty or error response
- Payment failure in USDC/x402 prevents access to the endpoint
- Rate limiting if too many requests are sent in quick succession
- Upstream Amazon data unavailability causes degraded or missing reviews
- ASIN for a product with no reviews returns empty review list

## How this service works

Amazon products, real-time news, image search, Medium articles, and Spotify data. Pay with USDC on Base.

## Output

A JSON object containing review data for the specified Amazon product ASIN — likely including review text, star ratings, reviewer information, and aggregated feedback metrics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "asin"
 ],
 "properties": {
  "asin": {
   "type": "string",
   "description": "Amazon ASIN"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-content-hub-amazon-product-reviews-172cb2f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-content-hub.vercel.app](https://www.zero.xyz/host/x402-content-hub.vercel.app/llms.txt)
