# ScopeAPI Amazon Product Reviews

> ScopeAPI Amazon Product 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).

Fetches customer reviews for an Amazon product identified by its ASIN

## Facts

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

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-reviews-2fda04ce
```

Example prompt: Pull the customer reviews for Amazon product ASIN B08N5WRWNW so I can analyze what buyers are saying about it.

## When to prefer this

Use this endpoint when you need structured Amazon product review data for a specific ASIN without scraping Amazon directly, especially in agentic workflows requiring pay-per-call micropayment pricing via USDC on Base (x402 protocol). Preferred over manual scraping or more expensive subscription APIs when cost-per-call economics matter.

## Known failure modes

- Invalid or non-existent ASIN returns empty data or error
- ASIN for a product with no reviews returns empty reviews array
- Payment failure via x402/USDC results in 402 response before data is returned
- Rate limiting or upstream Amazon data unavailability may cause errors
- Malformed ASIN path parameter results in 400 or unexpected 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

Returns a JSON object with Amazon customer review data for the specified ASIN, including review content, ratings, and 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-reviews-2fda04ce/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)
