简体   繁体   中英

Get Item/Product Price in Amazon using ASIN

Is there any way on how we can get the price for a specific product ( or item ) in amazon using ASIN and for a specific seller?

I have seen Amazon Marketplace Web Service (Amazon MWS) but I think it's for sellers who want to develop an application to access their product. It doesn't allow me to create an account so I can get MWS keys because it asks for Amazon Seller Account and to which I don't need a seller's account since I'm only interested for the prices of the product and I'm not a seller.

I have a list of ASIN which I need to get their prices for a specific seller ( specifically from AMAZON only ). I already know how to create AWS keys. What will I do next? I'm looking for a function or method which asks for ASIN and returns prices offered by a specific seller.

Here's the articles I read:

I'm very new with this stuff and it's very advance for me. Hope somebody will give me a good guide that will be able to fulfill my needs. Thank you.

Your view on Amazon MWS is correct: It is an API that lets merchants sell stuff on Amazon, so unless the specific seller you are looking for is in fact your own company, MWS won't be an option.

What you are looking for is now part of the Amazon Product Advertising API (the name may be a bit misleading). This API lets you query for information that is accessible for everyone.

You will need to call ItemLookup with the following parameters:

  • ItemId = a single ASIN
  • MerchantID = the seller ID of the specific seller you're looking for (if you omit this parameter, you'll get data for all sellers, or just the "buybox/best price" seller, depending on the ResponseGroup you chose)
  • ResponseGroup = "Offers", "OfferListing" or "OfferFull" (play with all three to pick the one that most closely matches what you're looking for)

You will have to do this for one ASIN at a time (technically, you could do up to 10 at a time, but results may not be what you'd expect)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM