简体   繁体   English

使用ASIN在亚马逊中获取商品/产品价格

[英]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? 我们如何使用ASIN和特定卖家获得亚马逊特定产品( 或物品 )的价格?

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. 我见过亚马逊商城网络服务(亚马逊MWS),但我认为这是针对想要开发应用程序来访问产品的卖家。 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. 它不允许我创建一个帐户,所以我可以获得MWS密钥,因为它要求Amazon Seller Account ,我不需要卖家的帐户,因为我只对产品的价格感兴趣而且我是不是卖家。

I have a list of ASIN which I need to get their prices for a specific seller ( specifically from AMAZON only ). 我有一个ASIN列表,我需要为特定卖家( 特别是AMAZON )获取价格。 I already know how to create AWS keys. 我已经知道如何创建AWS密钥了。 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. 我正在寻找一种功能或方法,要求ASIN并返回特定卖家提供的价格。

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. 您对亚马逊MWS的看法是正确的:它是一种API,允许商家在亚马逊上销售商品,因此除非您寻找的特定卖家实际上是您自己的公司,否则MWS将不是一种选择。

What you are looking for is now part of the Amazon Product Advertising API (the name may be a bit misleading). 您正在寻找的是亚马逊产品广告API的一部分(名称可能有点误导)。 This API lets you query for information that is accessible for everyone. 通过此API,您可以查询每个人都可以访问的信息。

You will need to call ItemLookup with the following parameters: 您需要使用以下参数调用ItemLookup

  • ItemId = a single ASIN ItemId =单个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) MerchantID =您要查找的特定卖家的卖家ID(如果您省略此参数,您将获得所有卖家的数据,或者只是“买家/最佳价格”卖家,具体取决于您选择的ResponseGroup)
  • ResponseGroup = "Offers", "OfferListing" or "OfferFull" (play with all three to pick the one that most closely matches what you're looking for) ResponseGroup =“Offers”,“OfferListing”或“OfferFull”(与所有三个一起选择最接近您正在寻找的那个)

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) 您必须一次为一个ASIN执行此操作(从技术上讲,您一次最多可以执行10个,但结果可能不是您所期望的)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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