# ScopeAPI Amazon Seller Reviews

> ScopeAPI Amazon Seller 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 customer reviews for a specific Amazon seller by their seller ID

## Facts

- Endpoint: GET https://scopeapipay.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-07a0ada6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BsO1SHlMSiuH9B6ewyFhp

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-07a0ada6
```

Example prompt: Can you pull all the customer reviews for Amazon seller ID A2B4C6D8E0 so I can see how buyers rate them?

## When to prefer this

Use this endpoint when you need to programmatically retrieve customer review data for a specific Amazon seller and are comfortable with pay-per-call micropayment pricing in USDC. Prefer this over scraping or manual lookup when building automated seller vetting pipelines, competitive intelligence tools, or e-commerce due diligence workflows.

## Known failure modes

- Invalid or non-existent seller ID returns empty data or error response
- Payment failure via x402 USDC micropayment results in 402 Payment Required response
- Rate limiting or quota exceeded returns 429 or similar error
- Seller has no reviews — returns empty data object
- Network timeout or Vercel platform downtime returns 5xx 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 review data for the specified Amazon seller, including customer feedback, ratings, and related 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-07a0ada6/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)
