# Financial Data x402 – Amazon Product Reviews

> Financial Data x402 – Amazon Product Reviews is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-09).

Fetches Amazon customer reviews for a product given its ASIN, paid per-call via USDC over the x402 protocol with no API key required.

## Facts

- Endpoint: GET https://x402financialdata.com/amazon-reviews/%7Basin%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-amazon-product-reviews-97db8712
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__fheH87_qzhwqoSlOJjW1

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 financial-data-x402-amazon-product-reviews-97db8712
```

Example prompt: Can you pull the Amazon customer reviews for the product with ASIN B0863TXGM3? I want to see the review titles, ratings, and whether they're verified purchases.

## When to prefer this

Choose this endpoint when you need Amazon product review data on a per-query basis without committing to a subscription or managing API keys — ideal for agents that occasionally need review data and can pay $0.05 USDC per call via the x402 micropayment protocol on Base or Solana.

## Known failure modes

- Invalid or non-existent ASIN returns empty review list or error
- Payment failure over x402 protocol blocks the request
- Product has no reviews yet — returns empty reviews array
- Rate limiting or upstream Amazon blocking may cause intermittent failures
- ASIN for non-Amazon-marketplace products returns no data

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

Returns a JSON object containing the product ASIN, a list of reviews (each with body text, title, author name, date, star rating, and verified_purchase flag), and the count of reviews returned in that call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asin": "B0863TXGM3",
  "reviews": [
   {
    "body": "Sound quality is surprisingly good for the size.",
    "date": "Reviewed in the United States on July 12, 2026",
    "title": "Great little speaker",
    "author": "J. Smith",
    "rating": 5,
    "verified_purchase": true
   }
  ],
  "review_count_returned": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-amazon-product-reviews-97db8712/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
