I found this API on Amazon web services GetLowestOffersPriceListings, I also have my Acess Key, and Secret which i am not able to use.
ASIN = ['B07CGKVJ34','B07HJRQXNY']
url = 'https://mws.amazonservices.com/ASINList.ASIN.1={}&Action=GetLowestOfferListingsForASIN&MarketplaceId=ATVPDKIKX0DER\
&Signature={}&AWSAccessKeyId={}'.format(ASIN[0], secret, key)
res = requests.get(url, headers={'User-Agent': "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:65.0) Gecko/20100101 Firefox/65.0"})
print(res.text)
So i think my problem is with url itself, the format is wrong or not correct order.
What i want is to get the lowest 4 prices for a list of ASIN numbers, I am sorry but i can't share key and secret.
Edit 1: this URL opens but now i get API version is missing in the message secction.
You are using Amazon Marketplace Web Service (Amazon MWS) to query the Amazon Retail Inventory, which is very different to Amazon Web Services (AWS) which is used to host your own servers and systems.
You need to prefix the url with
https://
i.e.
Also, the URL you need to call is actually
https://mws.amazonservices.com/Products/2011-10-01
, which includes the version. Here is an example from the Amazon MWS documentation: