# Apify Free Amazon Product Scraper (via StableApify x402)

> Apify Free Amazon Product Scraper (via StableApify x402) is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Scrapes Amazon product listings and details from category or product URLs, returning structured product data including prices, variants, and attributes.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/junglee/free-amazon-product-scraper/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apify-free-amazon-product-scraper-via-stableapify-x402-9c8627b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tDxTWdFLpE84kQNwNL582

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 apify-free-amazon-product-scraper-via-stableapify-x402-9c8627b1 -d '<json body>'
```

Example prompt: Scrape Amazon product listings from this category page — https://www.amazon.com/s?k=wireless+headphones — grab up to 50 products with full product details including variant prices, and don't use the CAPTCHA solver.

## When to prefer this

Use this endpoint when you need structured product data from Amazon category or product pages without the official Amazon API, especially for e-commerce research, price monitoring, or building product datasets. Prefer this over generic web scrapers when you need Amazon-specific fields like bestseller ranks, product variants, and manufacturer attributes out of the box.

## Known failure modes

- Amazon blocks requests with CAPTCHA — some fields like attributes and bestseller ranks may be missing if CAPTCHA solver is enabled
- Invalid or non-Amazon URLs cause the actor to fail or return no results
- Rate limiting or IP blocking by Amazon may reduce result counts
- maxItemsPerStartUrl or maxSearchPagesPerStartUrl limits reached before full category is scraped
- Variant pricing or certain product fields unavailable for some Amazon domains other than .com

## How this service works

Search Apify Store actors, start actor runs, and fetch results over x402 and MPP.

## Output

Returns an array of structured product records from Amazon, each containing fields such as product title, price, variant prices, product attributes, manufacturer attributes, bestseller ranks, images, and other product-level details depending on whether detailed scraping is enabled.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "categoryUrls",
    "useCaptchaSolver",
    "scrapeProductVariantPrices",
    "scrapeProductDetails"
   ],
   "properties": {
    "categoryUrls": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "url"
      ],
      "properties": {
       "url": {
        "type": "string",
        "format": "uri"
       },
       "method": {
        "type": "string"
       },
       "headers": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {
         "type": "string"
        }
       },
       "payload": {
        "type": "string"
       },
       "userData": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "additionalProperties": false
     },
     "description": "Enter urls of Amazon categories. You can also use specific product URLs directly."
    },
    "useCaptchaSolver": {
     "type": "boolean",
     "default": false,
     "description": "If enabled the scraper will automatically solve captchas thrown by Amazon. This will decrease the amount of request retries and increase the speed of the scraper. ***IMPORTANT*** - This option works well only for the `'.com'` Amazon domain, but even for that one Amazon doesn't show a few product fields after solving a captcha (specifically: 'attributes', 'manufacturer attributes', and 'bestseller ranks')"
    },
    "maxItemsPerStartUrl": {
     "type": "integer",
     "maximum": 9007199254740991,
     "minimum": 0,
     "description": "Enter the maximum number of results you want to scrape per each star URL. This will let the scraper know when to stop."
    },
    "scrapeProductDetails": {
     "type": "boolean",
     "default": true,
     "description": "If enabled, the scraper will extract each found product from the category page in detail (this is the default behavior). If disabled, the scraper will only extract the quick product information from the category page. Useful for faster and more lightweight searches for products."
    },
    "maxSearchPagesPerStartUrl": {
     "type": "integer",
     "maximum": 9007199254740991,
     "minimum": 1,
     "description": "Enter the maximum number of search pages to scrape for each start URL. E.g. only scrape the first 5 pages. This field can also be used with the `maxItemsPerS
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apify-free-amazon-product-scraper-via-stableapify-x402-9c8627b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
