# RagRadar Grid — Amazon Seller Reviews

> RagRadar Grid — Amazon Seller 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-15).

Fetches customer reviews for a specific Amazon seller by seller ID

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/amazon/seller/%7BsellerId%7D/reviews
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-amazon-seller-reviews-94a30d29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HNloivRGYmLsTPMrALYrD

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-seller-reviews-94a30d29
```

Example prompt: Pull all the customer reviews for Amazon seller ID A2Z3J4K5L6M7N8 — I want to see what buyers are saying about them.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-call access to Amazon seller review data without managing Amazon API credentials directly. Best for e-commerce intelligence tasks, seller vetting, competitor research, or due diligence where per-call pricing ($0.75 USDC) is acceptable and USDC/Base micropayments via x402 are supported.

## Known failure modes

- Invalid or non-existent sellerId returns empty data or error
- Payment failure via x402/USDC micropayment blocks the request
- Rate limiting if too many calls are made in quick succession
- Stale data if the seller has very recent reviews not yet indexed
- Malformed sellerId path parameter results in a 400 or 404 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 review data for the specified Amazon seller, sourced from RagRadar Grid's multi-source intelligence layer. Includes review content, ratings, and feedback metadata aggregated from Amazon.

## 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": {
      "sellerId": {
       "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-seller-reviews-94a30d29/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)
