# ScopeAPI Amazon Product Top Reviews

> ScopeAPI Amazon Product Top Reviews is a paid API for AI agents from scopeapipay.vercel.app, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Retrieves the top customer reviews for an Amazon product identified by its ASIN

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/amazon/product/%7Basin%7D/top-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/scopeapi-amazon-product-top-reviews-5e79f653
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nLbQ2Ww88UZ68jr9g0gSJ

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 scopeapi-amazon-product-top-reviews-5e79f653
```

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

## When to prefer this

Use this endpoint when you need structured top-customer-review data for a specific Amazon product by ASIN and want a pay-per-call model without a subscription. Ideal for competitive product research, sentiment analysis, or e-commerce intelligence workflows where you need real Amazon review content programmatically.

## Known failure modes

- Invalid or non-existent ASIN returns empty data or error
- Payment failure via x402 micropayment if USDC balance is insufficient
- Rate limiting or quota exceeded on the underlying Amazon data source
- Product with no reviews returns empty reviews array
- Network timeout if Amazon data scraping takes too long

## 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

Returns a JSON object with top customer reviews for the specified Amazon product, including review text, ratings, reviewer details, and other review metadata sourced via ScopeAPI.

## 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": "ScopeAPI"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-amazon-product-top-reviews-5e79f653/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapipay.vercel.app](https://www.zero.xyz/host/scopeapipay.vercel.app/llms.txt)
