Amazon Multi Marketplace Scraper [Most Advance]
Pricing
from $10.00 / 1,000 results
Amazon Multi Marketplace Scraper [Most Advance]
Scrape Amazon search results across 23 marketplaces (US, UK, India, Germany, Japan, UAE, and more) in one run. Extract ASINs, titles, prices, URLs, images, sponsored flags, and exact search ranking position. Up to 10,000 products per run. Export to CSV or JSON. No Amazon Associates or PA‑API account
Pricing
from $10.00 / 1,000 results
Rating
5.0
(4)
Developer
Shop Intel
Actor stats
4
Bookmarked
3
Total users
2
Monthly active users
5 days ago
Last modified
Categories
Share
Amazon Scraper – Extract ASINs, Prices & Search Rankings Across 23 Marketplaces | Apify Actor
Amazon Scraper extracts ASINs, titles, prices, product URLs, sponsored flags, and search rankings from Amazon across 23 global marketplaces — up to 10,000 products per run, delivered as CSV or JSON without the official Amazon API.
🧠 Overview
This Amazon Scraper is an enterprise‑grade Apify Actor for e‑commerce intelligence teams, affiliates, pricing analysts, and agencies that need structured Amazon search data across multiple countries in a single run. Search any keyword and the Actor paginates across Amazon.com, Amazon.in, Amazon.co.uk, Amazon.de, Amazon.co.jp, and 18 more retail storefronts, returning ASINs, titles, prices, image URLs, sponsored vs organic flags, and exact search‑ranking positions. Every run writes to the Apify Dataset plus RESULTS_CSV and RESULTS_JSON, ready for Google Sheets, BigQuery, Snowflake, n8n, Make, or Zapier. Use it as a drop‑in Amazon Product Advertising API alternative — no seller account, no throttling, no per‑request fees.
🆚 Amazon Scraper vs. Amazon Product Advertising API
| Feature | Official Amazon PA‑API | This Amazon Scraper |
|---|---|---|
| Account required | Associates account + approval | None — just Apify |
| Rate limits | Strict per‑day quota | Unlimited scaling |
| Marketplaces | Single per call | 23 marketplaces in one Actor |
| Search ranking position | Not exposed | Exact page + position per ASIN |
| Sponsored vs organic | Not distinguished | isSponsored boolean per row |
| Setup time | Days to weeks | Seconds |
| Output | JSON only | CSV, JSON, Excel out of the box |
| Custom domains | No | baseUrl override for any Amazon site |
✨ Features
- Scrape ASINs, titles, prices, product URLs, image URLs, and sponsored flags from Amazon search results.
- Support 23 Amazon marketplaces: US, CA, MX, BR, UK, DE, FR, IT, ES, NL, BE, SE, PL, TR, IE, AE, SA, EG, ZA, IN, JP, AU, SG.
- Extract exact search ranking position and page number for SEO, category, and share‑of‑shelf reporting.
- Paginate automatically up to 10,000 unique ASINs per run with built‑in retry logic on HTTP errors.
- Override the marketplace dropdown with a custom
baseUrlfor any Amazon domain your workflow needs. - Inject session cookie headers for challenging networks or localized pricing.
- Export Dataset +
RESULTS_CSV+RESULTS_JSON+OUTPUTrun summary in one click. - Flag sponsored ads vs organic listings with a boolean
isSponsoredfor PPC vs SEO analysis. - Distinguish marketplaces in output with
marketplaceURL andmarketplaceCodecolumns (US,IN,UK, …). - Automate with the Apify scheduler, webhooks, and REST API for daily pricing feeds or ASIN harvesting.
- Skip the Amazon Product Advertising API — no Associates account, no API keys, no tight rate limits.
🎯 Use Cases
- Dynamic Pricing & Repricers: Feed live Amazon prices into your repricing engine to win the Buy Box or set competitive SKUs across multiple countries.
- Competitor Share of Voice: Track how often your brand appears on page 1 for high‑value keywords vs competing sellers and sponsored ads.
- Amazon SEO (AMZ) Research: Identify high‑ranking ASIN titles, categories, and keywords to optimize your own listings.
- Affiliate Product Roundups: Build content sites, Chrome extensions, or comparison tools by harvesting thousands of ASINs from live Amazon searches.
- Category & Market Expansion: Scout products across regional Amazon sites (e.g.,
Amazon.devsAmazon.co.uk) to plan international rollout. - Lead Generation for Brands: Find sellers running Sponsored Products ads to target for agency services, tools, or marketing outreach.
⚙️ Input Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
keyword | string | Yes | Amazon search query (same as typing into k= search bar). | "wireless earbuds" |
maxResults | integer | Yes | Unique ASINs to collect, 1–10,000 (aliases: numberOfResults, resultsRequired). | 1000 |
marketplace | string | No | Amazon country code. Ignored if baseUrl is set. | "US" |
baseUrl | string | No | Custom Amazon domain override. | "https://www.amazon.co.uk" |
city | string | No | Label stored in output for reporting; does not affect the scrape. | "New York" |
callQueryApi | boolean | No | Use Amazon's /s/query XHR (enabled by default for amazon.in). | false |
cookieHeader | string | No | Raw Cookie header for sessions that face challenges. | "session-id=123-456-789; ..." |
📤 Output Example (JSON)
{"position": 1,"page": 1,"asin": "B0FC64RYH1","title": "BrowseBook 14.1\" FHD IPS Laptop | Student & Office Work","price": "$539.99","productUrl": "https://www.amazon.com/dp/B0FC64RYH1","imageUrl": "https://m.media-amazon.com/images/I/71h7L8gcrL.jpg","isSponsored": false,"searchKeyword": "laptops","marketplace": "https://www.amazon.com","marketplaceCode": "US"}
📋 Output Data Schema
Every product row includes these fields:
| Field | Type | Description |
|---|---|---|
position | integer | Exact rank in Amazon search results (1‑based). |
page | integer | Search page number the product appeared on. |
asin | string | Amazon Standard Identification Number (unique product ID). |
title | string | Full product title as shown in search. |
price | string | Listed price with local currency symbol (e.g. $, ₹, £). |
productUrl | string | Direct, clean URL to the product detail page. |
imageUrl | string | High‑resolution product image URL. |
isSponsored | boolean | true for Sponsored Products ads; false for organic. |
searchKeyword | string | The keyword that produced this row. |
marketplace | string | Retail storefront URL (e.g. https://www.amazon.com). |
marketplaceCode | string | Country code (US, UK, IN, DE, …). |
▶️ How to Use
- Run on Apify Console: Open the Amazon Multi‑Marketplace Scraper, click Try for free, enter a keyword, pick a marketplace, set
maxResults, and press Start. Export the Dataset as CSV or JSON. - Via API: Trigger the Actor with the Apify REST API or
ApifyClientand fetch the Dataset programmatically. - Via CLI: Run locally with the Apify CLI:
apify call scrapeio/amazon-multi-marketplace-scraper-most-advanced \--input='{"keyword":"running shoes","marketplace":"UK","maxResults":500}'
🔗 API Example (JavaScript)
const { ApifyClient } = require('apify-client');const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });const run = await client.actor('scrapeio/amazon-multi-marketplace-scraper-most-advanced').call({keyword: 'mechanical keyboard',marketplace: 'US',maxResults: 250,});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(`Collected ${items.length} ASINs from Amazon US`);console.log(items[0]);
📈 Why Use This Amazon Product Scraper?
- Speed & Automation: Pull thousands of ASINs in a single run with automatic pagination and retries — no manual clicking, no brittle DIY scrapers.
- 23 Marketplaces, One Actor: Switch from
Amazon.comtoAmazon.detoAmazon.co.jpwith one dropdown — or override with any custombaseUrl. - Search‑Ranking Fidelity:
positionandpagefields preserve exact Amazon organic + sponsored order, which the official PA‑API does not expose. - Official API Alternative: No Associates account, no throttled PA‑API quotas, no OAuth — just keyword + marketplace + results.
- Bulk Export Bundle: Dataset +
RESULTS_CSV+RESULTS_JSON+OUTPUTsummary are all produced per run — feed Google Sheets, BigQuery, Snowflake, or n8n in minutes. - Enterprise Reliability: Retries on transient
503/429, cookie‑header support, andmeta.stoppedReasondiagnostics for robust pipelines.
❓ FAQ
Q: Is it legal to scrape Amazon? Amazon search results are publicly visible, and web scraping for lawful research and analytics is widely practiced. You are responsible for complying with Amazon's Conditions of Use and local data laws.
Q: Is this the official Amazon Product Advertising API? No. This Actor is an Amazon API alternative that automates the public Amazon search pages. No Associates account or PA‑API keys are required.
Q: Can I get more than 1,000 products?
Yes. Set maxResults up to 10,000. The Actor paginates automatically until the target is reached or listings end.
Q: How do I target Amazon UK, Germany, or Japan?
Pick the marketplace code (UK, DE, JP, …) in the dropdown — or set baseUrl to any Amazon domain for custom routing.
Q: Does it support proxies? Yes. Use Apify Proxy (residential or datacenter) in the run configuration for large or high‑frequency jobs.
Q: How do I handle CAPTCHAs or 503 errors?
The Actor retries transient HTTP errors automatically and returns partial results with reasons in meta.stoppedReason. For stubborn regions, provide a cookieHeader or switch to residential proxies.
Q: What output formats are supported?
Dataset exports to CSV, JSON, Excel, XML, and HTML. A complete RESULTS_CSV and RESULTS_JSON are also written to the key‑value store.
Q: Can I distinguish sponsored vs organic listings?
Yes — every row includes isSponsored (boolean). Combined with position, this gives a precise PPC‑vs‑SEO view per page.
📣 Start Scraping Amazon in Seconds
Run the Amazon Scraper on Apify now → and turn any keyword into structured ASIN, price, and ranking data across 23 marketplaces.
🔗 Related Scrapers by ScrapeIO
Combine with these Apify Actors to build full e‑commerce and market‑intelligence pipelines:
- Google Maps Scraper — local businesses, reviews, and contacts.
- Google News Scraper — headlines, sources, and publisher links by keyword.
- Facebook Ad Library Scraper — Meta ads by keyword, Page ID, or URL.
- Instagram Ads Scraper — Instagram‑only ads with creative and copy.
- WhatsApp Ads Scraper — Click‑to‑WhatsApp ad intelligence.
- Facebook Ad Library Brand Finder — resolve brand names to verified Page IDs.
- YouTube Video Downloader — download videos or audio to cloud storage.
This README describes the Amazon Multi‑Marketplace Search Scraper for Apify. Use in compliance with Amazon's terms of service and applicable laws. This tool is not affiliated with or endorsed by Amazon.

