# ScopeAPI Amazon Seller Reviews

> ScopeAPI Amazon Seller Reviews is a paid API for AI agents from scopepay.vercel.app, 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://scopepay.vercel.app/api/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/scopeapi-amazon-seller-reviews-6ecc298b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__sRLZ49qwN6xh0U8PUrCJ

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-seller-reviews-6ecc298b
```

Example prompt: Can you pull up all the customer reviews for Amazon seller A2XXXXXXXXX so I can see how buyers rate them before we decide to partner with them?

## When to prefer this

Use this endpoint when you need structured customer review data for a specific Amazon seller and want pay-per-call pricing via USDC micropayments rather than a subscription. Ideal for one-off seller due diligence, competitive research, or reputation checks on Amazon marketplace sellers.

## Known failure modes

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

## 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 seller, including review content, ratings, and metadata sourced from 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": {
      "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": "ScopeAPI"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-amazon-seller-reviews-6ecc298b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopepay.vercel.app](https://www.zero.xyz/host/scopepay.vercel.app/llms.txt)
