# ScopeAPI Amazon Product Scraper

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

Scrapes an Amazon product or search page URL and returns structured e-commerce data about the listing

## Facts

- Endpoint: GET https://scopepay.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-56fe6ca7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wSbrvKJIA6o4XTPvLjlQ8

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-56fe6ca7
```

Example prompt: Can you scrape this Amazon product page and pull back the title, price, rating, and seller info? The URL is https://www.amazon.com/dp/B09XYZ1234

## When to prefer this

Use this endpoint when you need structured product data from a specific Amazon listing or search page URL and want to pay per call without a subscription. Ideal for one-off lookups, price checks, or enriching product databases with live Amazon data. Prefer this over browser automation or manual scraping when you need a clean API response with USDC micropayment billing.

## Known failure modes

- Invalid or non-Amazon URL returns empty or error data
- Amazon bot-detection blocks the scrape returning partial or no data
- Product page no longer exists returns empty data object
- Missing required `url` query parameter causes request failure
- Payment failure via x402 micropayment results in 402 response before data is returned

## 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 structured product data extracted from the Amazon page, including fields like product title, price, ratings, seller information, and other listing details, wrapped in a ScopeAPI response envelope with a `data` object and `source` field.

## 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-56fe6ca7/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)
