As a memorandum because I needed to get Amazon (US) data at work. I think you can get the product outline and reviews by scraping. Since you cannot get past listing status, prices, rankings, etc. Get it using the Keepa API.
Reference: Keepa https://keepa.com/#!api
keepa_analysis.py
#Library
!pip install keepa
import keepa
import pandas as pd
#Data acquisition
accesskey = '##############' #Get the API key and enter it
api = keepa.Keepa(accesskey)
products = api.query('B07VQJ5P3L') #If you put ASIN here, the data will be taken without permission.
keepa.plot_product(products[0])
When you run it, you can get such data.
Recommended Posts