Amazon Multi Marketplace Scraper [Most Advance] avatar

Amazon Multi Marketplace Scraper [Most Advance]

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Amazon Multi Marketplace Scraper [Most Advance]

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

Shop Intel

Maintained by Community

Actor stats

4

Bookmarked

3

Total users

2

Monthly active users

5 days ago

Last modified

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

FeatureOfficial Amazon PA‑APIThis Amazon Scraper
Account requiredAssociates account + approvalNone — just Apify
Rate limitsStrict per‑day quotaUnlimited scaling
MarketplacesSingle per call23 marketplaces in one Actor
Search ranking positionNot exposedExact page + position per ASIN
Sponsored vs organicNot distinguishedisSponsored boolean per row
Setup timeDays to weeksSeconds
OutputJSON onlyCSV, JSON, Excel out of the box
Custom domainsNobaseUrl 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 baseUrl for any Amazon domain your workflow needs.
  • Inject session cookie headers for challenging networks or localized pricing.
  • Export Dataset + RESULTS_CSV + RESULTS_JSON + OUTPUT run summary in one click.
  • Flag sponsored ads vs organic listings with a boolean isSponsored for PPC vs SEO analysis.
  • Distinguish marketplaces in output with marketplace URL and marketplaceCode columns (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.de vs Amazon.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

NameTypeRequiredDescriptionExample
keywordstringYesAmazon search query (same as typing into k= search bar)."wireless earbuds"
maxResultsintegerYesUnique ASINs to collect, 1–10,000 (aliases: numberOfResults, resultsRequired).1000
marketplacestringNoAmazon country code. Ignored if baseUrl is set."US"
baseUrlstringNoCustom Amazon domain override."https://www.amazon.co.uk"
citystringNoLabel stored in output for reporting; does not affect the scrape."New York"
callQueryApibooleanNoUse Amazon's /s/query XHR (enabled by default for amazon.in).false
cookieHeaderstringNoRaw 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:

FieldTypeDescription
positionintegerExact rank in Amazon search results (1‑based).
pageintegerSearch page number the product appeared on.
asinstringAmazon Standard Identification Number (unique product ID).
titlestringFull product title as shown in search.
pricestringListed price with local currency symbol (e.g. $, , £).
productUrlstringDirect, clean URL to the product detail page.
imageUrlstringHigh‑resolution product image URL.
isSponsoredbooleantrue for Sponsored Products ads; false for organic.
searchKeywordstringThe keyword that produced this row.
marketplacestringRetail storefront URL (e.g. https://www.amazon.com).
marketplaceCodestringCountry code (US, UK, IN, DE, …).

▶️ How to Use

  1. 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.
  2. Via API: Trigger the Actor with the Apify REST API or ApifyClient and fetch the Dataset programmatically.
  3. 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.com to Amazon.de to Amazon.co.jp with one dropdown — or override with any custom baseUrl.
  • Search‑Ranking Fidelity: position and page fields 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 + OUTPUT summary are all produced per run — feed Google Sheets, BigQuery, Snowflake, or n8n in minutes.
  • Enterprise Reliability: Retries on transient 503/429, cookie‑header support, and meta.stoppedReason diagnostics 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.



Combine with these Apify Actors to build full e‑commerce and market‑intelligence pipelines:


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.