Amazon Services China
亚马逊商城网络服务(亚马逊 MWS)文档

Deprecation Notice:

Amazon Marketplace Web Service (MWS) will no longer be available after March 31, 2024. All MWS developers must migrate to Selling Partner API (SP-API) to avoid service disruptions. Refer to the Migration Hub for more information.

亚马逊 MWS 文档

GetMyPriceForASIN

根据 ASIN,返回您自己的商品的价格信息。

描述

GetMyPriceForASIN 操作与 GetMyPriceForSKU 大体相同,但前者使用 MarketplaceIdASIN 来唯一标识一件商品,且不会返回 SKUIdentifier 元素。

请求参数

名称 描述 必填项
MarketplaceId

商城编码。指定返回价格的商城。

类型:xs:string

ASINList

一个 ASIN 值的结构化列表。用于标识指定商城中的商品。

最大值:20 个 ASIN

ItemCondition

根据商品状况筛选纳入考虑范围的商品。有效值:NewUsedCollectibleRefurbishedClub

可选

默认值:全部

响应元素

GetMyPriceForASIN 操作返回的响应元素与 GetMyPriceForSKU 操作的“响应元素”部分中描述的响应元素相同,但前者不返回 SKUIdentifier 元素。

示例

查询请求示例

https://mws.amazonservices.com/Products/2011-10-01
?AWSAccessKeyId=AKIAEXAMPLEFWR4TJ7ZQ
&Action=GetMyPriceForASIN
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&SellerId=A1IMEXAMPLEWRC
&SignatureVersion=2
&Timestamp=2012-12-04T22%3A40%3A47Z
&Version=2011-10-01
&Signature=x%2FEXAMPLEFSPqX7tAN83%2FROsuHWc04SEaepLkEXAMPLEo%3D
&SignatureMethod=HmacSHA256
&MarketplaceId=ATVPDKIKX0DER
&ASINList.ASIN.1=1933890517

响应示例

<?xml version="1.0"?>
<GetMyPriceForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetMyPriceForASINResult ASIN="1933890517" 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>ATVPDKIKX0DER</MarketplaceId>
        <ASIN>1933890517</ASIN>
      </MarketplaceASIN>
    </Identifiers>
    <Offers>
      <Offer>
        <BuyingPrice>
          <LandedPrice>
            <CurrencyCode>USD</CurrencyCode>
            <Amount>303.99</Amount>
          </LandedPrice>
          <ListingPrice>
            <CurrencyCode>USD</CurrencyCode>
            <Amount>300.00</Amount>
          </ListingPrice>
          <Shipping>
            <CurrencyCode>USD</CurrencyCode>
            <Amount>3.99</Amount>
          </Shipping>
        </BuyingPrice>
        <RegularPrice>
          <CurrencyCode>USD</CurrencyCode>
          <Amount>300.00</Amount>
        </RegularPrice>
        <FulfillmentChannel>MERCHANT</FulfillmentChannel>
        <ItemCondition>Used</ItemCondition>
        <ItemSubCondition>Acceptable</ItemSubCondition>
        <SellerId>A1IMEXAMPLEWRC</SellerId>
        <SellerSKU>SKU2468</SellerSKU>
      </Offer>
    </Offers>
  </Product>
</GetMyPriceForASINResult>
<ResponseMetadata>
  <RequestId>a3381684-87bd-416e-9b95-EXAMPLE9c236</RequestId>
</ResponseMetadata>
</GetMyPriceForASINResponse>