Amazon Bestsellers Scraper avatar

Amazon Bestsellers Scraper

Pricing

$3.99/month + usage

Go to Apify Store
Amazon Bestsellers Scraper

Amazon Bestsellers Scraper

Scrape Amazon Best Sellers rankings by category from Amazon.in (and other marketplaces). Extracts rank, title, ASIN, price, rating, reviews, and optionally full product details.

Pricing

$3.99/month + usage

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Amazon Best Sellers Scraper

Scrape the top-100 ranked products from any Amazon Best Sellers category — including rank number, title, ASIN, price, rating, review count, and optionally full product details.

Supports Amazon India (in), US (com), UK (co.uk), Germany (de), Japan (co.jp), Canada (ca), Australia (com.au), and Brazil (com.br).


Modes

ModeDescription
categoryScrape best sellers by category slug (e.g. electronics)
categoryUrlScrape from a direct Best Sellers page URL
productUrlScrape detailed info for specific product URLs

Input

{
"mode": "category",
"category": "electronics",
"country": "in",
"maxItems": 50,
"deepSearch": false,
"extractReviews": false,
"proxyConfiguration": { "useApifyProxy": true }
}

Input Fields

FieldTypeDefaultDescription
modestringcategorycategory, categoryUrl, or productUrl
categorystringelectronicsCategory slug (see list below)
categoryUrlstringDirect Best Sellers URL (for categoryUrl mode)
productUrlsstring[]Product page URLs (for productUrl mode)
countrystringinAmazon marketplace: in, com, co.uk, de, co.jp, ca, com.au, com.br
maxItemsinteger50Max products to return (1–100)
deepSearchbooleanfalseVisit each product page for full details
extractReviewsbooleanfalseExtract customer reviews (requires deepSearch: true)
proxyConfigurationobjectApify proxy settings

Supported Categories (India)

SlugURL
electronicshttps://www.amazon.in/gp/bestsellers/electronics/
bookshttps://www.amazon.in/gp/bestsellers/books/
computershttps://www.amazon.in/gp/bestsellers/computers/
kitchenhttps://www.amazon.in/gp/bestsellers/kitchen/
toyshttps://www.amazon.in/gp/bestsellers/toys/
beautyhttps://www.amazon.in/gp/bestsellers/beauty/
health-personal-carehttps://www.amazon.in/gp/bestsellers/health-personal-care/
clothinghttps://www.amazon.in/gp/bestsellers/clothing/
sportshttps://www.amazon.in/gp/bestsellers/sports/
home-improvementhttps://www.amazon.in/gp/bestsellers/home-improvement/
automotivehttps://www.amazon.in/gp/bestsellers/automotive/
groceryhttps://www.amazon.in/gp/bestsellers/grocery/
babyhttps://www.amazon.in/gp/bestsellers/baby/
pet-supplieshttps://www.amazon.in/gp/bestsellers/pet-supplies/
video-gameshttps://www.amazon.in/gp/bestsellers/video-games/
watcheshttps://www.amazon.in/gp/bestsellers/watches/
musical-instrumentshttps://www.amazon.in/gp/bestsellers/musical-instruments/
softwarehttps://www.amazon.in/gp/bestsellers/software/
movies-tvhttps://www.amazon.in/gp/bestsellers/movies-tv/
musichttps://www.amazon.in/gp/bestsellers/music/

Output

Basic (deepSearch: false)

{
"rank": 1,
"asin": "B0CXHXXX01",
"title": "boAt Bassheads 100 in Ear Wired Earphones with Mic",
"url": "https://www.amazon.in/dp/B0CXHXXX01",
"imageUrl": "https://m.media-amazon.com/images/I/51example.jpg",
"price": "₹349",
"rating": "4.1",
"reviewCount": 182450,
"hasPrime": true,
"categoryName": "Electronics",
"categoryUrl": "https://www.amazon.in/gp/bestsellers/electronics/",
"scrapedAt": "2025-01-15T10:30:00.000Z"
}

Full (deepSearch: true)

All basic fields plus:

{
"rank": 1,
"categoryName": "Electronics",
"categoryUrl": "https://www.amazon.in/gp/bestsellers/electronics/",
"asin": "B0CXHXXX01",
"title": "boAt Bassheads 100",
"brand": "boAt",
"price": "₹349",
"listPrice": "₹799",
"discount": "56%",
"rating": "4.1",
"reviewCount": 182450,
"inStock": true,
"description": "...",
"features": ["Feature 1", "Feature 2"],
"images": ["https://...1.jpg", "https://...2.jpg"],
"technicalDetails": { "Connector Type": "3.5mm" },
"reviews": [],
"scrapedAt": "2025-01-15T10:30:00.000Z"
}

Output Fields

FieldTypeDescription
ranknumberBest Sellers rank (#1 = top seller)
asinstringAmazon Standard Identification Number
titlestringProduct name
urlstringProduct page URL
imageUrlstringThumbnail image URL
pricestringCurrent price string
ratingstringStar rating (e.g. "4.1")
reviewCountnumberNumber of customer ratings
hasPrimebooleanWhether Prime shipping is available
categoryNamestringName of the Best Sellers category
categoryUrlstringURL of the Best Sellers category page
scrapedAtstringISO timestamp of extraction

Additional fields when deepSearch: true (from product page): brand, inStock, listPrice, discount, description, features, images, technicalDetails, reviews


Usage Examples

Example 1: Top 50 electronics best sellers

{
"mode": "category",
"category": "electronics",
"country": "in",
"maxItems": 50
}

Example 2: Top 100 books with full details

{
"mode": "category",
"category": "books",
"country": "in",
"maxItems": 100,
"deepSearch": true,
"proxyConfiguration": { "useApifyProxy": true }
}

Example 3: Specific category URL

{
"mode": "categoryUrl",
"categoryUrl": "https://www.amazon.in/gp/bestsellers/electronics/1389401031",
"country": "in",
"maxItems": 20
}

Example 4: Amazon US toys best sellers

{
"mode": "category",
"category": "toys-and-games",
"country": "com",
"maxItems": 50
}

Example 5: Specific product URLs

{
"mode": "productUrl",
"productUrls": [
"https://www.amazon.in/dp/B08HDJ86NZ",
"https://www.amazon.in/dp/B07XJ8C8F5"
]
}

Cost Estimation

OperationEventsCost per event
Product listing (no deep search)product-details per product$0.005
Deep searchproduct-details per product$0.005
Customer reviewsproduct-review per review$0.001

Example: Top 50 electronics (no deep search) = 50 × $0.005 = $0.25


Notes

  • Amazon Best Sellers show top 100 products split across 2 pages (50 per page). maxItems is capped at 100.
  • Rates vary by country. Proxy usage is recommended for India (RESIDENTIAL proxy group).
  • Category slugs must match Amazon's URL format exactly (e.g. toys for India, toys-and-games for US).
  • For subcategories, use mode: categoryUrl with the full URL including the node ID.