# Amazon Product Scraper (`scrapemint/amazon-product-scraper`) Actor

Scrape Amazon products from search URLs, category URLs, ASINs, or seller stores. Each row ships pricing (list, savings, coupons), seller intel (FBA vs FBM, buy box), BSR, variants, ratings histogram, badges, and stock signals. 10 marketplaces. Pay per product.

- **URL**: https://apify.com/scrapemint/amazon-product-scraper.md
- **Developed by:** [Kennedy Mutisya](https://apify.com/scrapemint) (community)
- **Categories:** Automation, E-commerce
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Amazon Product Scraper

Scrape Amazon products from search URLs, category URLs, ASINs, or seller stores. Each row ships pricing intelligence, seller details, BSR breakdown, variants, ratings histogram, badges, stock signals, and shipping estimates. Works on 10 Amazon marketplaces. Pay per product.

**Built for** Amazon FBA sellers benchmarking competitors, ecommerce ops teams pulling pricing for repricers, brand operators monitoring MAP compliance, product researchers vetting new categories, affiliate marketers building product feeds, and BI analysts ingesting Amazon catalog data into a warehouse.

**Keywords this actor ranks for:** amazon product scraper, amazon scraper api, amazon search results scraper, amazon asin scraper, amazon product details api, amazon product data extractor, amazon FBA research tool, amazon BSR tracker, amazon variant scraper, amazon price monitor, amazon seller scraper, amazon to JSON, amazon to CSV, amazon multi marketplace scraper.

---

### Why this actor

| Other Amazon scrapers | **This actor** |
|---|---|
| Single input (URL only) | Four input modes: search URLs, category URLs, direct ASINs, seller stores |
| US only | 10 marketplaces (US, UK, DE, FR, IT, ES, CA, AU, JP, IN) |
| Title and price only | Pricing intel: list, savings, coupon, subscribe and save, prime exclusive |
| No seller info | Seller name, profile URL, sold by vs ships from, FBA vs FBM detection |
| Single rank field | BSR breakdown by primary and subcategory |
| No variant data | Full variant matrix with child ASINs |
| No badges | Amazon's Choice, Bestseller, Climate Pledge, New Release |
| Stock as boolean | Low stock count parsed ("Only 3 left") |

---

### How it works

```mermaid
flowchart LR
    A[Search URLs<br/>Category URLs<br/>ASINs<br/>Seller stores] --> B[Listing crawl<br/>collect ASINs]
    A --> C[Direct product<br/>per ASIN]
    B --> C
    C --> D[Detail page<br/>Playwright + residential proxy]
    D --> E[Parse price seller rating<br/>BSR variants badges stock]
    E --> F[One row per product]
    F --> G[(JSON CSV API)]
````

Pages render with Playwright behind residential proxy with browser fingerprinting and session rotation. Amazon CAPTCHAs trigger a session swap and retry, not a failed row.

***

### What you get per row

```mermaid
flowchart LR
    R[Product row] --> R1[Identity<br/>asin url marketplace]
    R --> R2[Title brand<br/>category breadcrumbs]
    R --> R3[Pricing<br/>current list savings coupon]
    R --> R4[Seller<br/>name FBA FBM buy box]
    R --> R5[Rating + BSR<br/>histogram primary rank]
    R --> R6[Badges + stock<br/>amazons choice low stock]
    R --> R7[Variants + media<br/>child ASINs images]
```

Toggle on `extractFrequentlyBoughtTogether` and the row carries the FBT bundle ASINs. Toggle on `extractAPlusContent` and the brand A+ description is captured for content teams.

***

### Quick start

**Scrape a search URL with full enrichment**

```json
{
  "startUrls": ["https://www.amazon.com/s?k=mechanical+keyboard"],
  "maxResultsPerStartUrl": 100,
  "extractVariants": true,
  "extractBSR": true
}
```

**Direct ASIN lookup across the catalog**

```json
{
  "asins": ["B08N5WRWNW", "B0BZYCJK89", "B0BSHF7WHW"],
  "marketplace": "US",
  "extractRatingHistogram": true
}
```

**Multi marketplace (UK + DE)**

```json
{
  "startUrls": [
    "https://www.amazon.co.uk/s?k=running+shoes",
    "https://www.amazon.de/s?k=laufschuhe"
  ],
  "maxResultsPerStartUrl": 50
}
```

**Track a single seller's catalog**

```json
{
  "startUrls": ["https://www.amazon.com/stores/AnkerDirect/page/0F47A78D-1FAC-4E5E-9F70-7B02F5F95F33"],
  "maxResultsPerStartUrl": 200,
  "extractFrequentlyBoughtTogether": true
}
```

***

### Sample output

```json
{
  "asin": "B08N5WRWNW",
  "url": "https://www.amazon.com/dp/B08N5WRWNW",
  "marketplace": "US",
  "title": "Echo Dot (4th Gen) | Smart speaker with Alexa",
  "brand": "Amazon",
  "category": {
    "primary": "Electronics",
    "breadcrumbs": ["Electronics", "Smart Home Devices", "Speakers"]
  },
  "price": {
    "current": 29.99,
    "currency": "USD",
    "list": 49.99,
    "savings": 20.00,
    "savingsPercent": 40,
    "perUnit": null,
    "coupon": "Save $5 with coupon",
    "subscribeSavePercent": null,
    "primeExclusive": true
  },
  "rating": {
    "stars": 4.7,
    "reviewCount": 458912,
    "questionCount": 1024,
    "histogram": { "5": 78, "4": 14, "3": 4, "2": 2, "1": 2 }
  },
  "badges": {
    "amazonsChoice": true,
    "bestseller": true,
    "climatePledgeFriendly": true,
    "newRelease": false
  },
  "availability": {
    "inStock": true,
    "stockText": "In Stock",
    "lowStockCount": null,
    "deliveryText": "FREE delivery Tomorrow"
  },
  "seller": {
    "name": "Amazon.com",
    "url": null,
    "soldBy": "Amazon.com",
    "shipsFrom": "Amazon.com",
    "fulfillmentType": "amazon"
  },
  "rank": {
    "primary": { "rank": 12, "category": "Electronics" },
    "all": [
      { "rank": 12, "category": "Electronics" },
      { "rank": 1, "category": "Computers & Accessories > Speakers" }
    ]
  },
  "variants": {
    "options": [
      { "value": "Charcoal", "asin": "B08N5WRWNW" },
      { "value": "Glacier White", "asin": "B084J4KZK1" }
    ],
    "totalCount": 4
  },
  "media": {
    "images": ["https://m.media-amazon.com/images/I/..."]
  },
  "details": {
    "bulletPoints": ["Meet the Echo Dot...", "Voice control your music..."],
    "specifications": {
      "item weight": "12 ounces",
      "product dimensions": "3.9 x 3.9 x 3.5 inches"
    }
  },
  "scrapedAt": "2026-04-26T08:00:00.000Z"
}
```

***

### Who uses this

| Role | Use case |
|---|---|
| Amazon FBA seller | Spot competitors winning Buy Box, track BSR, find low stock signals to time launches. |
| Brand operator | MAP compliance monitoring across marketplaces. Pull every reseller and their listed price. |
| Product researcher | Sourcing new categories. Filter by BSR rank and rating count to find proven demand. |
| Repricer | Pull current price + variants daily to feed a dynamic repricing engine. |
| Affiliate marketer | Build product feeds with images, descriptions, and discount badges for review sites. |
| BI analyst | Pipe Amazon catalog data into Snowflake or BigQuery. Each row is API ready. |

***

### Input reference

| Field | Type | What it does |
|---|---|---|
| `startUrls` | string\[] | Amazon search, category, product, or seller URLs. |
| `asins` | string\[] | Direct 10 character ASINs. Combined with `marketplace`. |
| `marketplace` | enum | US, UK, DE, FR, IT, ES, CA, AU, JP, IN. |
| `maxResultsPerStartUrl` | integer | Cap per listing URL. 0 means everything. |
| `extractVariants` | boolean | Pull child ASINs, sizes, colors. |
| `extractBSR` | boolean | Best Sellers Rank by category. |
| `extractRatingHistogram` | boolean | Percentage split across 5/4/3/2/1 stars. |
| `extractFrequentlyBoughtTogether` | boolean | FBT bundle ASINs. |
| `extractAPlusContent` | boolean | Brand A+ content blocks. |
| `deliveryZipcode` | string | US zipcode for delivery location cookie. |
| `dedupe` | boolean | Skip ASINs from previous runs. |
| `concurrency` | integer | Parallel pages. Three to four is safe. |
| `proxyConfiguration` | object | Apify proxy. Residential is required. |

***

### API call

```bash
curl -X POST \
  "https://api.apify.com/v2/acts/YOUR_USER~amazon-product-scraper/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "startUrls": ["https://www.amazon.com/s?k=wireless+earbuds"],
    "maxResultsPerStartUrl": 50,
    "extractBSR": true
  }'
```

***

### Pricing

The first few products per run are free so you can validate output before paying. After that, one charge per product row. Variants, BSR, ratings histogram, and badges are all included at no extra cost.

***

### FAQ

#### What is the difference between this and other Amazon scrapers?

Four input modes (search URLs, category URLs, direct ASINs, seller stores), 10 marketplaces, full pricing intelligence (list, savings, coupon, subscribe and save, prime exclusive), seller intel including FBA vs FBM detection, BSR breakdown by category, variant matrix with child ASINs, low stock count parsed from "Only 3 left" text, and badges (Amazon's Choice, Bestseller, Climate Pledge, New Release).

#### Why does Amazon block the actor sometimes?

Amazon serves CAPTCHAs to traffic that looks robotic. The actor uses fingerprinted Chrome with rotating residential proxies and detects CAPTCHA pages, marks the session bad, and retries on a fresh session. Most CAPTCHAs resolve within two retries.

#### Can I scrape products from amazon.de or amazon.co.uk?

Yes. Pass any Amazon URL from the supported marketplaces (US, UK, DE, FR, IT, ES, CA, AU, JP, IN). The actor parses the host and returns a `marketplace` field on every row. ASINs passed directly use the `marketplace` input field to pick the host.

#### How accurate is the price field?

Prices come straight from the Buy Box. The parser handles US format ($1,299.99), European format (€1.299,99), and Japanese yen (no decimals). Coupon, subscribe and save, and prime exclusive deals are captured as separate fields so you can model the final paid price yourself.

#### What does the BSR field carry?

`rank.primary` is the top level Best Sellers Rank with category. `rank.all` is the full breakdown including subcategory ranks. Useful for FBA sourcing where subcategory rank is a stronger signal than the noisy top level rank.

#### Can I detect FBA vs FBM sellers?

Yes. The actor parses "Sold by" and "Ships from" lines from the Buy Box. `seller.fulfillmentType` is set to `amazon` (Amazon Retail), `fba` (third party seller, Amazon ships), or `fbm` (third party seller, merchant ships).

#### Does it pull all child ASINs for variants?

When `extractVariants` is on, the actor walks the size, color, and style swatches and returns every variant value with its child ASIN where available. Useful for repricers that need the full SKU map.

#### Can I run this on a schedule?

Yes. Use the Apify scheduler for hourly, daily, or weekly runs. Combined with `dedupe: true`, only new ASINs are pushed. Great for category monitoring, repricing, and inventory alerts.

#### Is scraping Amazon allowed?

This actor reads HTML any anonymous web visitor can see. Respect Amazon's terms and rate limit sensibly. Do not redistribute product images or descriptions you have no lawful basis to publish.

***

### Related actors

- **Amazon Product Review Export and Sentiment Monitor** — every review with rating, text, verified purchase flag, helpful votes
- **Website Content Crawler** — websites to clean Markdown with token counts and RAG ready chunks
- **Google Maps Scraper** — local business data with reviews
- **TripAdvisor Property Rank Tracker** — daily rank, rating drift, competitor signals for hotels and restaurants
- **LinkedIn Jobs Scraper Pro** — search URL, company URL, and recruiter contact extraction

# Actor input Schema

## `startUrls` (type: `array`):

Amazon search URLs (/s?k=), category URLs (/b?node= or /gp/bestsellers), product URLs (/dp/ASIN), or seller store URLs (/stores/ or /shops/). Mix and match. Each is treated as an entry point.

## `asins` (type: `array`):

List of 10 character Amazon ASINs to scrape directly. Skip if you are using URLs. Combined with the marketplace below.

## `marketplace` (type: `string`):

Amazon marketplace used when ASINs are passed directly. Search and category URLs already carry their own marketplace.

## `maxResultsPerStartUrl` (type: `integer`):

Hard cap on products returned per search or category URL. 0 means everything Amazon exposes (typically up to 7 pages of 16 results).

## `extractVariants` (type: `boolean`):

Pull all child ASINs, sizes, colors, and price points for products that ship in multiple variants. Built in. No extra cost.

## `extractBSR` (type: `boolean`):

Pull BSR by category for every product. Includes primary and subcategory ranks. Useful for product researchers and FBA sourcing.

## `extractRatingHistogram` (type: `boolean`):

Capture the percentage split across 5, 4, 3, 2, and 1 star reviews. Adds 200 to 400 ms per product.

## `extractFrequentlyBoughtTogether` (type: `boolean`):

Capture the FBT bundle ASINs and total bundle price.

## `extractAPlusContent` (type: `boolean`):

Capture the brand A+ content blocks (rich product description with images and comparison tables).

## `deliveryZipcode` (type: `string`):

US zipcode used to set the delivery location cookie. Affects pricing and shipping estimates. Leave blank to use Amazon's default.

## `dedupe` (type: `boolean`):

Skip ASINs already pushed in previous runs. Turn off to refresh stale rows.

## `concurrency` (type: `integer`):

Number of products processed in parallel. Three to four is safe. Higher concurrency triggers Amazon CAPTCHAs faster.

## `proxyConfiguration` (type: `object`):

Apify proxy. Residential is required for Amazon at any meaningful volume.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.amazon.com/dp/B08N5WRWNW"
  ],
  "asins": [],
  "marketplace": "US",
  "maxResultsPerStartUrl": 25,
  "extractVariants": true,
  "extractBSR": true,
  "extractRatingHistogram": true,
  "extractFrequentlyBoughtTogether": false,
  "extractAPlusContent": false,
  "deliveryZipcode": "",
  "dedupe": true,
  "concurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        "https://www.amazon.com/dp/B08N5WRWNW"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/amazon-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": ["https://www.amazon.com/dp/B08N5WRWNW"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/amazon-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    "https://www.amazon.com/dp/B08N5WRWNW"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call scrapemint/amazon-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/amazon-product-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Product Scraper",
        "description": "Scrape Amazon products from search URLs, category URLs, ASINs, or seller stores. Each row ships pricing (list, savings, coupons), seller intel (FBA vs FBM, buy box), BSR, variants, ratings histogram, badges, and stock signals. 10 marketplaces. Pay per product.",
        "version": "0.1",
        "x-build-id": "Mby48no5P2HxOmjed"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapemint~amazon-product-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapemint-amazon-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapemint~amazon-product-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapemint-amazon-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapemint~amazon-product-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapemint-amazon-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "startUrls": {
                        "title": "Amazon URLs",
                        "type": "array",
                        "description": "Amazon search URLs (/s?k=), category URLs (/b?node= or /gp/bestsellers), product URLs (/dp/ASIN), or seller store URLs (/stores/ or /shops/). Mix and match. Each is treated as an entry point.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "asins": {
                        "title": "Direct ASINs (alternative input)",
                        "type": "array",
                        "description": "List of 10 character Amazon ASINs to scrape directly. Skip if you are using URLs. Combined with the marketplace below.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "marketplace": {
                        "title": "Marketplace for direct ASINs",
                        "enum": [
                            "US",
                            "UK",
                            "DE",
                            "FR",
                            "IT",
                            "ES",
                            "CA",
                            "AU",
                            "JP",
                            "IN"
                        ],
                        "type": "string",
                        "description": "Amazon marketplace used when ASINs are passed directly. Search and category URLs already carry their own marketplace.",
                        "default": "US"
                    },
                    "maxResultsPerStartUrl": {
                        "title": "Max results per start URL",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Hard cap on products returned per search or category URL. 0 means everything Amazon exposes (typically up to 7 pages of 16 results).",
                        "default": 25
                    },
                    "extractVariants": {
                        "title": "Extract variant matrix",
                        "type": "boolean",
                        "description": "Pull all child ASINs, sizes, colors, and price points for products that ship in multiple variants. Built in. No extra cost.",
                        "default": true
                    },
                    "extractBSR": {
                        "title": "Extract Best Sellers Rank",
                        "type": "boolean",
                        "description": "Pull BSR by category for every product. Includes primary and subcategory ranks. Useful for product researchers and FBA sourcing.",
                        "default": true
                    },
                    "extractRatingHistogram": {
                        "title": "Extract rating histogram",
                        "type": "boolean",
                        "description": "Capture the percentage split across 5, 4, 3, 2, and 1 star reviews. Adds 200 to 400 ms per product.",
                        "default": true
                    },
                    "extractFrequentlyBoughtTogether": {
                        "title": "Extract frequently bought together",
                        "type": "boolean",
                        "description": "Capture the FBT bundle ASINs and total bundle price.",
                        "default": false
                    },
                    "extractAPlusContent": {
                        "title": "Extract A+ content",
                        "type": "boolean",
                        "description": "Capture the brand A+ content blocks (rich product description with images and comparison tables).",
                        "default": false
                    },
                    "deliveryZipcode": {
                        "title": "Delivery zipcode",
                        "type": "string",
                        "description": "US zipcode used to set the delivery location cookie. Affects pricing and shipping estimates. Leave blank to use Amazon's default.",
                        "default": ""
                    },
                    "dedupe": {
                        "title": "Deduplicate across runs",
                        "type": "boolean",
                        "description": "Skip ASINs already pushed in previous runs. Turn off to refresh stale rows.",
                        "default": true
                    },
                    "concurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "maximum": 12,
                        "type": "integer",
                        "description": "Number of products processed in parallel. Three to four is safe. Higher concurrency triggers Amazon CAPTCHAs faster.",
                        "default": 3
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy. Residential is required for Amazon at any meaningful volume.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
