我想你誤解了這個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>