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 文档

GetMyPriceForSKU

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

描述

GetMyPriceForSKU 操作会根据您指定的 SellerSKUMarketplaceId,返回您自己的商品的价格信息。请注意,如果您提交了并未销售的商品的 SellerSKU,则此操作会返回空的 Offers 元素。此操作最多可返回 20 款商品的价格信息。

请求参数

名称 描述 必填项
MarketplaceId

商城编码。指定返回商品信息的商城。

类型:xs:string

SellerSKUList

一个 SellerSKU 值的结构化列表。用于标识指定商城中的商品。SellerSKU 由您的 SellerId 限定,您提交的每个亚马逊商城网络服务(亚马逊 MWS)操作都需要包含您的 SellerId。

最大值:20 个 SellerSKU

ItemCondition

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

可选

默认值:全部

响应元素

GetMyPriceForSKU 操作返回的响应元素通过以下通用 XSD 描述:ProductsAPI_Response.xsd。下表提供了关于 GetMyPriceForSKU 操作所返回的一些关键元素的更多信息。

名称 描述
Identifiers

包含以下唯一标识商品的编码:

  • MarketplaceASINMarketplaceIdASIN 组合。
  • SKUIdentifierMarketplaceIdSellerSKUSellerId 组合。
BuyingPrice

包含价格信息(包括进行促销的商品)以及运费。

包含以下元素:

  • ListingPrice – 商品的当前价格(包括进行促销的商品)。
  • Shipping – 商品的运费。
  • LandedPriceListingPrice + Shipping
RegularPrice 商品的当前价格(不包括进行促销的商品)。不包括运费。
FulfillmentChannel

商品的配送渠道。

有效值:

  • Amazon - 亚马逊物流。
  • Merchant - 卖家自行配送。
ItemCondition 商品的状况。有效值:NewUsedCollectibleRefurbishedClub
ItemSubCondition 商品的子状况。有效值:NewMintVery GoodGoodAcceptablePoorClubOEMWarrantyRefurbished WarrantyRefurbishedOpen BoxOther
SellerId 在操作中提交的 SellerId
SellerSKU 商品的 SellerSKU

示例

查询请求示例

https://mws.amazonservices.com/Products/2011-10-01
?AWSAccessKeyId=AKIAEXAMPLEFWR4TJ7ZQ
&Action=GetMyPriceForSKU
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&SellerId=A1IMEXAMPLEWRC
&SignatureVersion=2
&Timestamp=2012-12-04T22%3A08%3A04Z
&Version=2011-10-01
&Signature=%2B0EXAMPLEuiHJv7xLyYVBgLQa17eJtmP4MIEXAMPLE0%3D
&SignatureMethod=HmacSHA256
&MarketplaceId=ATVPDKIKX0DER
&SellerSKUList.SellerSKU.1=SKU2468

响应示例

<?xml version="1.0"?>
<GetMyPriceForSKUResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetMyPriceForSKUResult SellerSKU="SKU2468" 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>
      <SKUIdentifier>
        <MarketplaceId>ATVPDKIKX0DER</MarketplaceId>
        <SellerId>A1IMEXAMPLEWRC</SellerId>
        <SellerSKU>SKU2468</SellerSKU>
      </SKUIdentifier>
    </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>
</GetMyPriceForSKUResult>
<ResponseMetadata>
  <RequestId>bc6e4601-3d74-4612-adcf-EXAMPLEf1796</RequestId>
</ResponseMetadata>
</GetMyPriceForSKUResponse>