# Amazon Shop Scraper

> Amazon Shop Scraper is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Scrapes an Amazon Shop page and returns its content given a shop URL

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/amazon/shop
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amazon-shop-scraper-305baa9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WvnM-qkykRjZa001U7yQj

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 amazon-shop-scraper-305baa9c
```

Example prompt: Can you scrape this Amazon seller shop page and pull out all the product listings? Here's the URL: https://www.amazon.com/s?me=A1B2C3D4E5F6G7

## When to prefer this

Use this endpoint when you need to extract product or seller information from a specific Amazon Shop/storefront page and have the direct URL. It is a lightweight, pay-per-call scraper ideal for one-off lookups or periodic monitoring of a single seller's shop. Prefer this over full web crawlers when you only need the shop page content without broader site traversal.

## Known failure modes

- Invalid or non-Amazon URL provided — endpoint may return an error or empty content
- Amazon blocks or rate-limits the scrape request, resulting in incomplete or no data
- The shop page has moved, been removed, or the seller account is inactive — returns empty or error response
- URL points to a non-shop Amazon page (e.g. product detail page instead of seller storefront) — may return unexpected content

## How this service works

Amazon Shop

## Output

Returns the scraped content of the specified Amazon Shop page, including product listings, seller details, pricing, and other storefront information present on the page at the time of the request.

## 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",
       "description": "URL to Amazon Shop page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amazon-shop-scraper-305baa9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
