我对一个API结果感到困惑。
API请求:GetMatchingProductForIdRequest / IdType ASIN
市场:DE A1PA6795UKMFR9
ASIN:B001B603YU
API Response ListPrice:€81.99
亚马逊网址:http://www.amazon.de/gp/product/B001B603YU
亚马逊价格:44.17欧元
它是价格不匹配的大型商品中唯一的产品。
答案 0 :(得分:0)
我认为你误解了这个API。 ListPrice
表示RRP =建议零售价(德语UVP = unverbindliche Preisempfehlung)。这不是您在亚马逊上购买该产品的价格。请参阅API调用GetCompetitivePricingForASIN
以获取您的价格。
例如:
<?xml version="1.0"?>
<GetCompetitivePricingForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetCompetitivePricingForASINResult ASIN="B001B603YU" status="Success">
<Product xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
<Identifiers>
<MarketplaceASIN>
<MarketplaceId>A1PA6795UKMFR9</MarketplaceId>
<ASIN>B001B603YU</ASIN>
</MarketplaceASIN>
</Identifiers>
<CompetitivePricing>
<CompetitivePrices>
<CompetitivePrice belongsToRequester="false" condition="New" subcondition="New">
<CompetitivePriceId>1</CompetitivePriceId>
<Price>
<LandedPrice>
<CurrencyCode>EUR</CurrencyCode>
<Amount>44.13</Amount>
</LandedPrice>
<ListingPrice>
<CurrencyCode>EUR</CurrencyCode>
<Amount>44.13</Amount>
</ListingPrice>
<Shipping>
<CurrencyCode>EUR</CurrencyCode>
<Amount>0.00</Amount>
</Shipping>
</Price>
</CompetitivePrice>
</CompetitivePrices>
<NumberOfOfferListings>
<OfferListingCount condition="Any">15</OfferListingCount>
<OfferListingCount condition="New">15</OfferListingCount>
</NumberOfOfferListings>
</CompetitivePricing>
<SalesRankings>
<SalesRank>
<ProductCategoryId>pet_products_display_on_website</ProductCategoryId>
<Rank>21552</Rank>
</SalesRank>
<SalesRank>
<ProductCategoryId>470605031</ProductCategoryId>
<Rank>453</Rank>
</SalesRank>
</SalesRankings>
</Product>
</GetCompetitivePricingForASINResult>
<ResponseMetadata>
<RequestId>aa089a13374fcd2ad</RequestId>
</ResponseMetadata>
</GetCompetitivePricingForASINResponse>