Amazon Seller Scraper avatar

Amazon Seller Scraper

Pricing

$3.99/month + usage

Go to Apify Store
Amazon Seller Scraper

Amazon Seller Scraper

Scrape Amazon seller profiles, ratings, feedback, and product listings.

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

13 hours ago

Last modified

Share

Scrape Amazon seller profiles — including seller name, ratings, feedback statistics, location, years on Amazon, and optionally their full product listings.

Supports Amazon India, US, UK, Germany, Japan, Canada, Australia, and Brazil.


What it does

  • Accepts a list of Amazon Seller IDs (e.g. A14CZOWI0VEHLG) or direct seller profile URLs
  • Scrapes seller profile: name, star rating, feedback count, positive feedback %, location, years active
  • Optionally scrapes all products in the seller's storefront (scrapeProducts: true)
  • Runs up to 2 sellers in parallel

Input

{
"mode": "sellerId",
"sellerIds": ["A14CZOWI0VEHLG", "A2HLF4XXYBKIPN"],
"country": "in",
"maxItems": 10,
"scrapeProducts": false
}

Input Fields

FieldTypeDefaultDescription
modestringsellerIdsellerId (list of IDs) or sellerUrl (full profile URLs)
sellerIdsstring[]Amazon Seller IDs (for sellerId mode)
sellerUrlsstring[]Full Amazon seller profile URLs (for sellerUrl mode)
countrystringinMarketplace: in, com, co.uk, de, co.jp, ca, com.au, com.br
maxItemsinteger10Maximum sellers to scrape (1–500)
scrapeProductsbooleanfalseScrape the seller's product listings
maxProductsinteger20Max products per seller (when scrapeProducts: true)
proxyConfigurationobjectApify proxy settings

How to find a Seller ID

  1. Go to any Amazon product page
  2. Click on the seller name link (near "Sold by ...")
  3. Look at the URL: https://www.amazon.in/sp?seller=A14CZOWI0VEHLG — the seller= part is the Seller ID

Output

{
"sellerId": "A14CZOWI0VEHLG",
"sellerName": "boAt",
"businessName": "Imagine Marketing Private Limited",
"url": "https://www.amazon.in/sp?seller=A14CZOWI0VEHLG",
"rating": "4.2",
"ratingCount": 24830,
"positiveFeedbackPercent": "87%",
"location": "Maharashtra, India",
"yearsOnAmazon": "8 years (since 2016)",
"description": "boAt is India's leading consumer electronics brand...",
"productCount": 0,
"scrapedAt": "2025-01-15T10:30:00.000Z"
}

With scrapeProducts: true:

{
"sellerId": "A14CZOWI0VEHLG",
"sellerName": "boAt",
"productCount": 20,
"products": [
{
"asin": "B08HDJ86NZ",
"title": "boAt Type-C Cable",
"url": "https://www.amazon.in/dp/B08HDJ86NZ",
"price": "₹149",
"rating": "4.2",
"imageUrl": "https://..."
}
]
}

Output Fields

FieldTypeDescription
sellerIdstringAmazon seller ID
sellerNamestringSeller display name
businessNamestringLegal business name
urlstringSeller profile URL
ratingstringAverage feedback star rating
ratingCountnumberTotal number of ratings received
positiveFeedbackPercentstringPercentage of positive feedback
locationstringSeller's location/address
yearsOnAmazonstringHow long the seller has been on Amazon
descriptionstringSeller description/about
productCountnumberNumber of products scraped from storefront
productsarrayProduct listings (when scrapeProducts: true)
scrapedAtstringISO timestamp

Usage Examples

Example 1: Profile-only for known seller IDs

{
"mode": "sellerId",
"sellerIds": ["A14CZOWI0VEHLG"],
"country": "in"
}

Example 2: With storefront products

{
"mode": "sellerId",
"sellerIds": ["A14CZOWI0VEHLG"],
"country": "in",
"scrapeProducts": true,
"maxProducts": 50
}

Example 3: By seller profile URL

{
"mode": "sellerUrl",
"sellerUrls": [
"https://www.amazon.in/sp?seller=A14CZOWI0VEHLG"
]
}

Notes

  • Amazon Seller IDs are typically 14 uppercase alphanumeric characters (e.g. A14CZOWI0VEHLG)
  • Proxy is recommended for scraping large numbers of sellers
  • scrapeProducts adds significant scraping time — use only when needed
  • Some seller pages may be unavailable or restricted based on region