# RagRadar Grid — Amazon Product Reviews

> RagRadar Grid — Amazon Product Reviews is a paid API for AI agents from grid.ragradar.space, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-08).

Fetches customer reviews for an Amazon product by ASIN via a pay-per-call REST endpoint.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/amazon/product/%7Basin%7D/reviews
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-amazon-product-reviews-c4d1bf5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z5vvMv7ksH20Q-C4ySbTz

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 ragradar-grid-amazon-product-reviews-c4d1bf5b
```

Example prompt: Can you pull the customer reviews for Amazon product ASIN B08N5WRWNW? 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 specific ASIN and want a pay-per-call micropayment model (USDC on Base via x402) rather than a subscription. Best suited for on-demand competitive research, product sentiment analysis, or e-commerce intelligence workflows where you need real Amazon review data programmatically.

## Known failure modes

- Invalid or non-existent ASIN returns empty data or error
- Payment failure via x402/USDC micropayment blocks the request
- Rate limiting or quota exceeded returns HTTP 429
- Malformed ASIN path parameter causes routing error
- Amazon data temporarily unavailable returns partial or empty response

## How this service works

37 paid REST endpoints: Facebook social & ads intelligence, Amazon e-commerce data, job market intelligence. Pay per call via x402 micropayments (USDC on Base).

## Output

A JSON object containing customer review data for the specified Amazon product ASIN, sourced from RagRadar Grid's Amazon intelligence layer. Includes review content, ratings, and associated metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asin": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "source": "RagRadar Grid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-grid-amazon-product-reviews-c4d1bf5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grid.ragradar.space](https://www.zero.xyz/host/grid.ragradar.space/llms.txt)
