Amazon Product Data Scraper avatar
Amazon Product Data Scraper

Pricing

from $8.00 / 1,000 results

Go to Apify Store
Amazon Product Data Scraper

Amazon Product Data Scraper

Developed by

Sachin Kumar Yadav

Sachin Kumar Yadav

Maintained by Community

Amazon data scraper API for search, category, product details, reviews, and offers. Track prices, monitor competitors, and export product data fast.

0.0 (0)

Pricing

from $8.00 / 1,000 results

2

6

3

Last modified

12 hours ago

Amazon Product Scraper (Apify Actor)

An easy, reliable Amazon data scraper for Search, Category, Product Details, Reviews, and Offers. Get clean JSON/CSV for analytics, price tracking, and research — all from a single Apify Actor. ⚡


Table of Contents


Overview

Use this Apify Actor to collect Amazon product data at scale. It normalizes results for easy warehousing and BI and supports smart filters for precise datasets. No Amazon SP‑API or MWS credentials are required. ✅

Key Features

  • 🔍 Search, 🗂️ Category, 🏷️ Details, ⭐ Reviews, 🛒 Offers
  • 🔁 Robust pagination and retries
  • 🧰 Normalized output schema for analytics
  • 🎯 Filters: Country, Sort By, Condition, Prime‑only, Deals & Discounts
  • 🚀 Simple Input UI with helpful sections and defaults

Quick Start

  1. Open the Actor on Apify and go to the Input tab.
  2. Choose a mode (e.g., search).
  3. Fill the matching fields (e.g., query for search, asin for details/reviews/offers).
  4. Click Run. View results in the default dataset as JSON or CSV.

Input Parameters

FieldTypeRequiredDescription
modestringYessearch
querystringFor searchSearch keyword (use with search).
category_idstringFor categoryAmazon category identifier (use with category).
asinstringFor details/reviews/offersProduct ASIN.
countryenumRecommendedMarketplace (e.g., US, IN, GB, CA, DE, FR, IT, ES, JP, AU).
sort_byenumOptionalSearch/category sort: RELEVANCE, PRICE_LOW_TO_HIGH, PRICE_HIGH_TO_LOW, AVG_CUSTOMER_REVIEW, NEWEST_ARRIVALS.
product_conditionenumOptionalALL, NEW, USED, RENEWED.
is_primebooleanOptionalFilter Prime‑eligible products.
deals_and_discountsenumOptionalNONE, ALL_DEALS, DEAL_OF_THE_DAY, LIGHTNING_DEAL.
start_pageintegerOptionalStarting page (>= 1).
max_pagesintegerOptionalNumber of pages to fetch.
reviews_sort_byenumReviewsTOP_REVIEWS, MOST_RECENT, MOST_HELPFUL.
star_ratingenumReviewsALL, FIVE_STAR, FOUR_STAR, THREE_STAR, TWO_STAR, ONE_STAR.
verified_purchases_onlybooleanReviewsOnly verified purchase reviews.
images_or_videos_onlybooleanReviewsOnly reviews with media.
current_format_onlybooleanReviewsFilter to current product format/variation.
offers_limitintegerOffersMax offers per page.

Modes & Examples

{
"mode": "search",
"query": "Smart Phone",
"country": "US",
"sort_by": "RELEVANCE",
"product_condition": "ALL",
"is_prime": false,
"deals_and_discounts": "NONE",
"start_page": 1,
"max_pages": 1
}

🗂️ Category

{
"mode": "category",
"category_id": "281407",
"country": "US",
"sort_by": "RELEVANCE",
"product_condition": "ALL",
"is_prime": false,
"deals_and_discounts": "NONE",
"start_page": 1,
"max_pages": 1
}

🏷️ Product Details

{
"mode": "details",
"asin": "B0D6YY45DL",
"country": "US"
}

⭐ Reviews

{
"mode": "reviews",
"asin": "B0D6YY45DL",
"country": "US",
"reviews_sort_by": "TOP_REVIEWS",
"star_rating": "ALL",
"verified_purchases_only": false,
"images_or_videos_only": false,
"current_format_only": false,
"start_page": 1,
"max_pages": 2
}

🛒 Offers

{
"mode": "offers",
"asin": "B0D6YY45DL",
"country": "US",
"offers_limit": 100,
"start_page": 1,
"max_pages": 1
}

Output

Common normalized fields for Search/Category include:

FieldDescription
asinProduct ASIN
titleProduct title
price / original_priceCurrent and crossed‑out prices
currencyCurrency code
rating / ratings_countAverage rating and count
urlProduct URL
imageMain image URL
num_offers / min_offer_priceOffer stats
is_best_seller / is_amazon_choiceBadges
is_primePrime eligibility

Reviews and Offers push item‑level rows per page. A final summary with success, mode, and pagination is included at the end of the run.

Output Example

Below is a sample of normalized dataset items produced by this Actor.

[
{
"asin": "B0DLHNWHRF",
"title": "Samsung Galaxy A16 5G A Series, Unlocked Android Smartphone, Large AMOLED Display, Durable Design, Super Fast Charging, Expandable Storage, 5G Connectivity, US Version, 2025, Blue Black",
"price": 164.99,
"original_price": 199.99,
"currency": "USD",
"rating": 4.2,
"ratings_count": 2153,
"url": "https://www.amazon.com/dp/B0DLHNWHRF",
"image": "https://m.media-amazon.com/images/I/71KGkQ+KOKL.jpg",
"num_offers": 2,
"min_offer_price": 140.24,
"is_best_seller": false,
"is_amazon_choice": false,
"is_prime": false,
"climate_pledge_friendly": true,
"sales_volume": "6K+ bought in past month",
"delivery": "FREE delivery Thu, Oct 16 · Fastest tomorrow",
"has_variations": true,
"fetched_page": 1
},
{
"asin": "B0DP3G4GVQ",
"title": "SAMSUNG Galaxy S25 Ultra, 512GB Smartphone, Unlocked Android, AI Night Mode Camera, Snapdragon 8 Elite Fast Processor, 5000mAh Battery, Built-in S Pen, 2025, Titanium Black",
"price": 1119.00,
"original_price": 1419.99,
"currency": "USD",
"rating": 4.5,
"ratings_count": 2980,
"url": "https://www.amazon.com/dp/B0DP3G4GVQ",
"image": "https://m.media-amazon.com/images/I/61n0lmxP5-L.jpg",
"num_offers": 5,
"min_offer_price": 1094.97,
"is_best_seller": false,
"is_amazon_choice": true,
"is_prime": false,
"climate_pledge_friendly": true,
"sales_volume": "1K+ bought in past month",
"delivery": "FREE delivery Thu, Oct 16 · Fastest tomorrow",
"has_variations": true,
"product_badge": "Overall Pick",
"fetched_page": 1
}
]

A final summary record is also added at the end of the dataset:

{
"success": true,
"mode": "search",
"country": "US",
"total_items": 50,
"start_page": 1,
"fetched_pages": 1,
"run_timestamp": "2025-11-02T19:17:35+05:30"
}

Reviews Output Example

Sample review records when mode is reviews.

[
{
"asin": "B0DLHNWHRF",
"review_id": "R2ABC12345",
"rating": 5,
"title": "Great value and battery life",
"body": "Battery lasts all day. Camera is decent for the price.",
"verified_purchase": true,
"has_images_or_videos": true,
"images": [
"https://images.example.com/review1_img1.jpg"
],
"videos": [],
"review_date": "2025-10-28T00:00:00Z",
"helpful_count": 42,
"reviewer_name": "Alex P.",
"reviewer_profile_url": "https://www.amazon.com/gp/profile/amzn1.account.XXXX",
"current_format": true,
"fetched_page": 1
},
{
"asin": "B0DLHNWHRF",
"review_id": "R3XYZ67890",
"rating": 3,
"title": "Good phone, average camera",
"body": "Performance is smooth but camera struggles in low light.",
"verified_purchase": false,
"has_images_or_videos": false,
"images": [],
"videos": [],
"review_date": "2025-10-21T00:00:00Z",
"helpful_count": 7,
"reviewer_name": "Maria G.",
"reviewer_profile_url": "https://www.amazon.com/gp/profile/amzn1.account.YYYY",
"current_format": false,
"fetched_page": 1
}
]

Offers Output Example

Sample offer records when mode is offers.

[
{
"asin": "B0DP3G4GVQ",
"offer_id": "OFFER-1-ABCDEFG",
"seller_name": "Tech World USA",
"seller_rating": 4.8,
"seller_ratings_count": 1250,
"price": 1094.97,
"currency": "USD",
"condition": "NEW",
"is_prime": true,
"shipping": "FREE",
"delivery": "Arrives Thu, Oct 16",
"in_stock": true,
"ships_from": "Amazon",
"sold_by": "Tech World USA",
"offer_url": "https://www.amazon.com/gp/offer-listing/B0DP3G4GVQ",
"fetched_page": 1
},
{
"asin": "B0DP3G4GVQ",
"offer_id": "OFFER-2-HIJKLMN",
"seller_name": "Mobile Deals Store",
"seller_rating": 4.5,
"seller_ratings_count": 320,
"price": 1129.00,
"currency": "USD",
"condition": "RENEWED",
"is_prime": false,
"shipping": "$5.99",
"delivery": "Arrives Fri, Oct 17 - Mon, Oct 20",
"in_stock": true,
"ships_from": "Seller",
"sold_by": "Mobile Deals Store",
"offer_url": "https://www.amazon.com/gp/offer-listing/B0DP3G4GVQ",
"fetched_page": 1
}
]

Best Practices

  • ✅ Use only the fields relevant to the selected mode.
  • 🔄 Start with small max_pages and scale up.
  • 📦 For price tracking, schedule runs and compare price over time.
  • 🌍 Choose the correct country for localized results.

FAQ

  • Do I need Amazon SP‑API or MWS? No. This Actor works without those credentials for public product data use cases.
  • Can I export to CSV/JSON? Yes. Open the run dataset and choose your preferred export format.
  • How do I monitor prices? Schedule the Actor on Apify and analyze price deltas across runs.
  • Does it support review filtering? Yes—filter by stars, media, and verified purchases.

Keywords

Amazon data scraper, Amazon product scraper, Amazon price scraper, Amazon ASIN scraper, scrape Amazon reviews, Amazon product tracker, Amazon web scraping tool, Amazon product details, Amazon offers scraper, Amazon category scraper, Amazon keyword scraper, Amazon competitor analysis, Amazon price monitoring, Apify Amazon scraper, Amazon product listing scraper