Track Amazon Bestseller History
Monitor historical product ranking trends in Amazon bestseller lists with SellerMagnet’s API to uncover market opportunities and optimize strategies.
No credit card required. Get started with 5,000 free API credits.
Why Track Amazon Bestseller History?
Leverage historical ranking data to gain a competitive edge in ecommerce.
Trend Analysis
Track rising or declining product popularity over time to identify market shifts.
Competitor Insights
Monitor competitors’ historical bestseller rankings to refine your strategies.
Market Opportunities
Spot high-demand niches and emerging trends based on historical data.
Powerful Bestseller History Tracking
Access detailed historical data to analyze product performance over time. Our API provides:
Historical Rankings
Retrieve timestamped bestseller rank data to track product performance trends.
Category Context
Understand product rankings within specific Amazon categories for targeted insights.
Multi-Marketplace Support
Track rankings across multiple Amazon marketplaces (e.g., .com, .de, .co.uk).
Bulk Tracking
Monitor historical rankings for thousands of ASINs in bulk for large-scale analysis.
Extract Bestseller History Data
Scrape historical Amazon bestseller rankings for any product with a single API request.
curl -X GET 'https://sellermagnet-api.com/api/amazon-product-bestseller-history?asin=B0CLTBHXWQ&marketplaceId=APJ6JRA9NG5V4&api_key=YOUR_API_KEY'
import requests url = "https://sellermagnet-api.com/api/amazon-product-bestseller-history" params = { "asin": "B0CLTBHXWQ", "marketplaceId": "APJ6JRA9NG5V4", "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 historical bestseller rankings, timestamps, and category details in JSON/CSV format.
API Details
Track historical bestseller rankings for specific Amazon products with the Bestseller History endpoint.
Parameters
- asin (required): Product ASIN (e.g., "B0CLTBHXWQ")
- marketplaceId (required): Marketplace ID (e.g., "APJ6JRA9NG5V4")
- api_key (required): Your API key
Response Data
Includes historical bestseller rankings, timestamps, and category details in JSON/CSV format.
{ "data": { "asin": "B0CLTBHXWQ", "productTitle": "Playstation 5 Console Edizione Digital Slim", "salesRankHistory": [ ["2025-06-14 01:58:00", 15], ["2025-06-13 01:58:00", 18], ... ], "category": { "id": "412603031", "name": "Videogiochi" }, "trackingSince": "2023-12-30" }, "success": true }