# ScopeAPI Amazon Product Scraper

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

Scrapes and returns structured product data from an Amazon product page URL via a paid REST endpoint

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/amazon/scrape
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-amazon-product-scraper-95f796f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TcA6tM7OkcAcIM_ABZVvM

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-scraper-95f796f7
```

Example prompt: Can you pull all the product details — price, ratings, title, and specs — from this Amazon listing: https://www.amazon.com/dp/B09XYZ1234?

## When to prefer this

Use this endpoint when you need structured product data from a specific Amazon product page URL and want to pay per call via USDC micropayments without managing a scraping infrastructure. Prefer this over general web scrapers when Amazon-specific structured output (price, ratings, ASIN data) is needed quickly.

## Known failure modes

- Invalid or non-Amazon URL provided — endpoint returns error or empty data object
- Amazon page requires login or is geo-restricted — scrape may fail or return incomplete data
- URL points to a non-product page (category, search results) — unstructured or no data returned
- Amazon anti-scraping measures triggered — may return null or partial response
- Missing required 'url' query parameter — request rejected
- Payment failure or insufficient USDC balance — 402 Payment Required 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 scraped Amazon product data including fields such as title, price, ratings, reviews, product description, images, and other listing 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "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-scraper-95f796f7/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)
