Amazon Product Estimated Sales API
Retrieve estimated monthly sales, sales rank, and category data for Amazon products with SellerMagnet’s API. Gain actionable ecommerce insights to optimize inventory and pricing strategies.
No credit card required. Get started with 500 free API credits.
Why Use the Estimated Sales API?
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
Our API provides comprehensive estimated sales data for Amazon products, including:
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.
Retrieve Estimated Sales Data
Fetch estimated monthly sales, sales rank, and more with a simple API request. Output is delivered in clean JSON format.
curl -X GET 'https://sellermagnet-api.com/amazon-product-search-estimated-sells?asin=B08N5WRWNW&marketplaceId=A1PA6795UKMFR9&api_key=YOUR_API_KEY'
import requests url = 'https://sellermagnet-api.com/amazon-product-search-estimated-sells' params = { 'asin': 'B08N5WRWNW', 'marketplaceId': 'A1PA6795UKMFR9', 'api_key': 'YOUR_API_KEY' } response = requests.get(url, params=params) print(response.json())
Example output: {"data": {"asin": "B08N5WRWNW", "estimated_monthly_sales": 121, "sales_rank": 1500, "category": "Electronics", "marketplace_domain": "amazon.com"}, "success": true}