Getting landing price from amazon API

♀尐吖头ヾ 提交于 2019-12-11 04:24:27

问题


I've been using the Amazon Product API in Python via this client.

However, I want to get the "landing price" for a given product - the price that Amazon displays prominently, the most competitive price when taking into account both the base price and delivery price. For example if a product has 2 offers such as $1 + $5 delivery vs $3 Free delivery, the landing price would be the $3 and be shown prominently by Amazon as it's the most competitive.

If I use the OfferSummary ResponseGroup of the Amazon Product API, doing response = amazon.lookup(ItemId=asin, ResponseGroup='OfferSummary'), then I get a response like

<?xml version="1.0"?>
<Item xmlns="http://webservices.amazon.com/AWSECommerceService/2013-08-01">
  <ASIN>B072KHRPLF</ASIN>
  <ParentASIN>B07CJ6DNF4</ParentASIN>
  <OfferSummary>
    <LowestNewPrice>
      <Amount>7723</Amount>
      <CurrencyCode>GBP</CurrencyCode>
      <FormattedPrice>&#xA3;77.23</FormattedPrice>
    </LowestNewPrice>
    <TotalNew>2</TotalNew>
    <TotalUsed>0</TotalUsed>
    <TotalCollectible>0</TotalCollectible>
    <TotalRefurbished>0</TotalRefurbished>
  </OfferSummary>
</Item>

for this product, which has a landing price of £92.08 Free delivery and another offer price of £77.23 + £17.50 delivery (£94.73 in total, and hence not the most competitive and not the landing price, despite having the lowest base price)

As far as I can tell I'd need to use the Amazon MWS API and call the GetCompetitivePricingForASIN endpoint perhaps, but I believe this needs a $40/month seller account.

Is there any other way to get the landing price? or anyway to do it via the Product API?


回答1:


This is not possible from PAPI. You either need MWS API, or you can use other free/cheaper third-party alternatives if you just need the landing price.

We use the amazon-price API from RapidAPI, it supports price/rating/review count fetching for up to 1000 products in a single request.



来源:https://stackoverflow.com/questions/50272640/getting-landing-price-from-amazon-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!