Scrape Amazon Product Estimated Sales
Extract estimated monthly sales, sales rank, and category data for Amazon products with SellerMagnet’s API to optimize inventory and pricing strategies.
No credit card required. Get started with 5,000 free API credits.
Why Scrape Amazon Estimated Sales?
Optimize Inventory
Use estimated monthly sales data to forecast demand and manage stock efficiently.
Competitive Analysis
Analyze sales rank and category data to benchmark products against competitors.
Strategic Pricing
Leverage sales insights to set competitive prices and maximize profitability.
Key Data Points
Retrieve comprehensive estimated sales data for Amazon products to drive ecommerce success. Our API provides:
Estimated Monthly Sales
Access estimated units sold per month to gauge product performance.
Sales Rank
Track current sales rank to understand product popularity in its category.
Category Insights
Identify the product’s category to analyze market trends and competition.
Marketplace Domain
Retrieve the marketplace domain (e.g., amazon.com) for region-specific analysis.
Extract Estimated Sales Data
Fetch estimated monthly sales, sales rank, and more with a single API request.
curl -X GET 'https://sellermagnet-api.com/api/amazon-product-search-estimated-sales?asin=B08N5WRWNW&marketplaceId=A1PA6795UKMFR9&api_key=YOUR_API_KEY'
import requests url = "https://sellermagnet-api.com/api/amazon-product-search-estimated-sales" params = { "asin": "B08N5WRWNW", "marketplaceId": "A1PA6795UKMFR9", "api_key": "YOUR_API_KEY" } response = requests.get(url, params=params) if response.ok: print(response.json()) else: print(f"Error: {response.status_code} - {response.json().get('message', 'Unknown error')}")
Output includes estimated monthly sales, sales rank, category, and marketplace domain in JSON/CSV format.
API Details
Fetch estimated sales data for Amazon products with the Estimated Sales endpoint.
Parameters
- asin (required): Product ASIN (e.g., "B08N5WRWNW")
- marketplaceId (required): Marketplace ID (e.g., "A1PA6795UKMFR9")
- api_key (required): Your API key
Response Data
Includes estimated monthly sales, sales rank, category, and marketplace domain in JSON/CSV format.
{ "data": { "asin": "B08N5WRWNW", "estimated_monthly_sales": 121, "sales_rank": 1500, "category": "Electronics", "marketplace_domain": "amazon.com" }, "success": true }