The Sales Estimates endpoint allows you to track daily sales performance and pricing data for specific ASINs over time. This endpoint provides detailed insights into estimated units sold and pricing fluctuations with daily granularity, making it essential for competitive analysis, pricing strategy development, and sales forecasting.
Why Use This Endpoint: Sales estimates serve as an excellent tool for making informed sales volume predictions and understanding market dynamics for specific products. By analyzing daily sales trends alongside price movements, you can gain valuable insights into competitor strategies, identify promotional activities, understand seasonal patterns, and establish optimal pricing points for your own products. This data is crucial for strategic planning around inventory management, competitive positioning, and revenue optimization.
Endpoint Details
Request Type: GET
URL: /api/sales_estimates_query
Available Markets: US, UK, DE, IN, CA, FR, IT, ES, MX, JP
What You Can Input (Per API Call)
Required Parameters
- Marketplace: Country code (us, uk, de, in, ca, fr, it, es, mx, jp)
- ASIN: Specific ASIN to be searched
- Start Date: Start date period (yyyy-mm-dd format)
- End Date: End date period (yyyy-mm-dd format, must be before current date)
Sample Request
GET /api/sales_estimates_query?marketplace=us&asin=B08JYQLKXZ&start_date=2025-02-27&end_date=2025-03-11
What You Get Back
Product Information
- Marketplace/ASIN: (e.g., us/B08JYQLKXZ)
- Parent ASIN: Parent product identifier (if querying a variant)
- Product Structure: is_parent, is_variant, is_standalone status indicators
- Variants: List of related variants (if querying a parent ASIN)
Daily Sales Data
- Date: Specific date for each data point (yyyy-mm-dd format)
- Estimated Units Sold: Daily sales volume estimate for the ASIN
- Last Known Price: Price at which units were sold on that date
Sample Response Output
{
"data": [
{
"id": "us/B08JYQLKXZ",
"type": "sales_estimate_result",
"attributes": {
"asin": "B08JYQLKXZ",
"is_parent": false,
"is_variant": true,
"is_standalone": false,
"parent_asin": "B09RWP4NXB",
"variants": [],
"data": [
{
"date": "2025-03-11",
"estimated_units_sold": 1563,
"last_known_price": 30.8
},
{
"date": "2025-03-10",
"estimated_units_sold": 1388,
"last_known_price": 30.8
},
{
"date": "2025-03-09",
"estimated_units_sold": 1391,
"last_known_price": 29.8
}
]
}
}
]
}
Data Highlights
- Data Granularity: Daily data points for up to one year of historical data per API call
- Data Structure: Time series data with daily sales and pricing information
- Search Method: 1-to-1 basis - input one ASIN with date range, get daily data points
- Date Range: Can retrieve up to one year's worth of daily data per API call
- Variant Handling: Sales estimates for variant ASINs return parent ASIN values as aggregates of all variants
Use Cases & Applications
1. Tracking Daily Price Changes by ASIN
Business Goal: Monitor competitor pricing strategies and identify promotional activities through detailed daily price and sales data analysis.
How to Implement:
- Query specific competitor ASINs over extended periods to track pricing patterns
- Analyze correlation between price changes and sales volume fluctuations
- Identify pricing sweet spots where sales volume peaks occur
- Monitor promotional pricing windows and their impact on sales performance
- Track price elasticity by comparing sales response to price adjustments
Key Metrics to Focus On:
- Daily price variance and frequency of price changes
- Sales volume response to price increases and decreases
- Price stability periods and their correlation with consistent sales
- Promotional pricing periods and recovery patterns
- Competitive pricing gaps and market positioning opportunities
Business Impact: Develop data-driven pricing strategies based on competitor behavior and market response patterns. Optimize your own pricing decisions by understanding how price changes affect sales volume in your market category. Identify optimal timing for promotional pricing and competitive price matching strategies.
2. Deciphering Seasonal Sales Patterns for Products
Business Goal: Understand seasonal trends and cyclical patterns for specific products to optimize inventory planning, marketing campaigns, and strategic business decisions.
How to Implement:
- Collect daily sales data over 12-month periods to capture full seasonal cycles
- Aggregate daily data into monthly and quarterly summaries for trend analysis
- Calculate percentage distribution of sales across time periods
- Apply seasonality scoring frameworks to categorize products
- Compare year-over-year seasonal patterns for trend validation
Seasonality Analysis Framework:
Monthly Seasonality Analysis:
- Calculate each month's percentage of total annual sales volume
- Low Seasonality: Under 10% of annual volume in peak month
- Moderate Seasonality: 10-15% of annual volume in peak month
- High Seasonality: Above 15% of annual volume in peak month
Quarterly Seasonality Analysis:
- Determine quarterly sales distribution percentages
- Low Seasonality: Under 30% of annual volume in peak quarter
- Moderate Seasonality: 30-35% of annual volume in peak quarter
- High Seasonality: Over 35% of annual volume in peak quarter
Key Metrics to Focus On:
- Monthly and quarterly sales concentration patterns
- Peak and valley periods for inventory and campaign planning
- Seasonal ramp-up and decline patterns for supply chain coordination
- Year-over-year seasonal consistency for forecasting reliability
- Category-specific seasonal benchmarks and comparisons
Business Impact: Optimize inventory management and supply chain planning based on predictable seasonal patterns. Improve marketing campaign timing and budget allocation to coincide with peak demand periods. Reduce carrying costs and stockout risks through better demand forecasting.
3. Pinpointing Key Sales Periods
Business Goal: Identify peak sales periods and high-performance windows to optimize strategic planning, resource allocation, and competitive positioning efforts.
How to Implement:
- Aggregate daily sales data into broader monthly and quarterly overviews
- Identify consistent high-performance periods across multiple products
- Analyze sales velocity changes and acceleration patterns
- Map sales periods to external factors like holidays, events, or market trends
- Create strategic calendars based on historical peak performance data
Key Metrics to Focus On:
- Peak sales period identification and duration analysis
- Sales velocity acceleration and deceleration patterns
- Consistent high-performance windows across product categories
- Revenue concentration during peak periods vs. baseline performance
- Market timing opportunities and competitive advantage windows
Business Impact: Streamline strategic planning processes by focusing efforts on proven high-impact periods. Optimize resource allocation and marketing spend timing based on historical performance data. Improve competitive positioning by understanding when market opportunities are greatest.
Technical Specifications
Rate Limits
- Endpoint follows standard API rate limits (300 requests/minute, 15/second)
- Each call processes one ASIN with specified date range
- Can retrieve up to one year of daily data per API call
Date Range Limitations
- Maximum date range: 366 days (approximately 1 year)
- End date must be before current date
- Data returned in daily increments for specified period
- Start and end dates must be in yyyy-mm-dd format
Response Format
- JSON API format with chronological data ordering
- Each data point represents one day within the specified range
- Sales estimates for variants return parent ASIN aggregated values
Important Data Considerations
Variant Data Handling: When querying variant ASINs, the endpoint returns sales estimates for the parent ASIN as an aggregate of all variants under that parent. This means individual variant performance is not available, only the combined performance of the entire product family.
Data Accuracy and Limitations: Sales estimates are calculated using proprietary algorithms and market data analysis. While highly accurate for trend analysis and competitive intelligence, exact sales figures should be used for directional insights rather than precise accounting purposes.
Historical Data Availability: Data availability may vary by ASIN and marketplace. Recently launched products may have limited historical data, while established products typically have comprehensive data coverage.
Error Handling
- 400 Bad Request: Invalid date format or date range exceeding limits
- 403 Forbidden: API key lacks marketplace permissions
- 404 Not Found: ASIN not found in specified marketplace
- 422 Validation Error: Date range or parameter validation errors
Additional endpoint documentation is available here: https://developer.junglescout.com/api#endpoints