Amazon MWS商品APIの実行結果例

前回の記事ではGetLowestOfferListingsForASINのレスポンス例を紹介しました。
ここでは、他の商品APIの実行結果を紹介します。

GetCompetitivePricingForASIN


出品数とランクが分かります。

<?xml version="1.0"?>
<GetCompetitivePricingForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetCompetitivePricingForASINResult ASIN="4906638015" 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>A1VC38T7YXB528</MarketplaceId>
        <ASIN>4906638015</ASIN>
      </MarketplaceASIN>
    </Identifiers>
    <CompetitivePricing>
      <CompetitivePrices>
        <CompetitivePrice belongsToRequester="false" condition="New" subcondition="New">
          <CompetitivePriceId>1</CompetitivePriceId>
          <Price>
            <LandedPrice>
              <CurrencyCode>JPY</CurrencyCode>
              <Amount>2039.00</Amount>
            </LandedPrice>
            <ListingPrice>
              <CurrencyCode>JPY</CurrencyCode>
              <Amount>2039.00</Amount>
            </ListingPrice>
            <Shipping>
              <CurrencyCode>JPY</CurrencyCode>
              <Amount>0.00</Amount>
            </Shipping>
          </Price>
        </CompetitivePrice>
      </CompetitivePrices>
      <NumberOfOfferListings>
        <OfferListingCount condition="Any">119</OfferListingCount>
        <OfferListingCount condition="Used">104</OfferListingCount>
        <OfferListingCount condition="New">1</OfferListingCount>
        <OfferListingCount condition="Collectible">14</OfferListingCount>
      </NumberOfOfferListings>
    </CompetitivePricing>
    <SalesRankings>
      <SalesRank>
        <ProductCategoryId>book_display_on_website</ProductCategoryId>
        <Rank>46</Rank>
      </SalesRank>
      <SalesRank>
        <ProductCategoryId>502840</ProductCategoryId>
        <Rank>2</Rank>
      </SalesRank>
      <SalesRank>
        <ProductCategoryId>562858</ProductCategoryId>
        <Rank>4</Rank>
      </SalesRank>
      <SalesRank>
        <ProductCategoryId>562850</ProductCategoryId>
        <Rank>4</Rank>
      </SalesRank>
    </SalesRankings>
  </Product>
</GetCompetitivePricingForASINResult>
<ResponseMetadata>
  <RequestId>xxxx</RequestId>
</ResponseMetadata>
</GetCompetitivePricingForASINResponse>





GetMatchingProduct


商品の情報が分かります

<?xml version="1.0"?>
<GetMatchingProductResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetMatchingProductResult ASIN="4906638015" 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>A1VC38T7YXB528</MarketplaceId>
        <ASIN>4906638015</ASIN>
      </MarketplaceASIN>
    </Identifiers>
    <AttributeSets>
      <ns2:ItemAttributes xml:lang="ja-JP">
        <ns2:Binding>単行本</ns2:Binding>
        <ns2:Creator Role="著">スティーブン・R. コヴィー</ns2:Creator>
        <ns2:Creator Role="原著">Stephen R. Covey</ns2:Creator>
        <ns2:Creator Role="翻訳">ジェームス スキナー</ns2:Creator>
        <ns2:Creator Role="翻訳">川西 茂</ns2:Creator>
        <ns2:IsAdultProduct>false</ns2:IsAdultProduct>
        <ns2:Label>キングベアー出版</ns2:Label>
        <ns2:ListPrice>
          <ns2:Amount>2039.00</ns2:Amount>
          <ns2:CurrencyCode>JPY</ns2:CurrencyCode>
        </ns2:ListPrice>
        <ns2:Manufacturer>キングベアー出版</ns2:Manufacturer>
        <ns2:NumberOfPages>492</ns2:NumberOfPages>
        <ns2:PackageDimensions>
          <ns2:Height Units="inches">1.02</ns2:Height>
          <ns2:Length Units="inches">7.87</ns2:Length>
          <ns2:Width Units="inches">5.75</ns2:Width>
          <ns2:Weight Units="pounds">1.41</ns2:Weight>
        </ns2:PackageDimensions>
        <ns2:PackageQuantity>1</ns2:PackageQuantity>
        <ns2:ProductGroup>Book</ns2:ProductGroup>
        <ns2:ProductTypeName>ABIS_BOOK</ns2:ProductTypeName>
        <ns2:PublicationDate>1996-12-01</ns2:PublicationDate>
        <ns2:Publisher>キングベアー出版</ns2:Publisher>
        <ns2:SmallImage>
          <ns2:URL>http://ec2.images-amazon.com/images/I/51JHD9GEK0L._SL75_.jpg</ns2:URL>
          <ns2:Height Units="pixels">75</ns2:Height>
          <ns2:Width Units="pixels">51</ns2:Width>
        </ns2:SmallImage>
        <ns2:Studio>キングベアー出版</ns2:Studio>
        <ns2:Title>7つの習慣―成功には原則があった!</ns2:Title>
      </ns2:ItemAttributes>
    </AttributeSets>
    <Relationships/>
    <SalesRankings>
      <SalesRank>
        <ProductCategoryId>book_display_on_website</ProductCategoryId>
        <Rank>46</Rank>
      </SalesRank>
      <SalesRank>
        <ProductCategoryId>502840</ProductCategoryId>
        <Rank>2</Rank>
      </SalesRank>
      <SalesRank>
        <ProductCategoryId>562858</ProductCategoryId>
        <Rank>4</Rank>
      </SalesRank>
      <SalesRank>
        <ProductCategoryId>562850</ProductCategoryId>
        <Rank>4</Rank>
      </SalesRank>
    </SalesRankings>
  </Product>
</GetMatchingProductResult>
<ResponseMetadata>
  <RequestId>xxxx</RequestId>
</ResponseMetadata>
</GetMatchingProductResponse>



GetProductCategoriesForASIN


ブラウズノードが分かります

<?xml version="1.0"?>
<GetProductCategoriesForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetProductCategoriesForASINResult>
  <Self>
    <ProductCategoryId>562850</ProductCategoryId>
    <ProductCategoryName>倫理学入門</ProductCategoryName>
    <Parent>
      <ProductCategoryId>500102</ProductCategoryId>
      <ProductCategoryName>倫理学・道徳</ProductCategoryName>
      <Parent>
        <ProductCategoryId>571582</ProductCategoryId>
        <ProductCategoryName>人文・思想</ProductCategoryName>
        <Parent>
          <ProductCategoryId>465610</ProductCategoryId>
          <ProductCategoryName>ジャンル別</ProductCategoryName>
          <Parent>
            <ProductCategoryId>465392</ProductCategoryId>
            <ProductCategoryName>ジャンル別</ProductCategoryName>
          </Parent>
        </Parent>
      </Parent>
    </Parent>
  </Self>
  <Self>
    <ProductCategoryId>562858</ProductCategoryId>
    <ProductCategoryName>人生論・教訓</ProductCategoryName>
    <Parent>
      <ProductCategoryId>500102</ProductCategoryId>
      <ProductCategoryName>倫理学・道徳</ProductCategoryName>
      <Parent>
        <ProductCategoryId>571582</ProductCategoryId>
        <ProductCategoryName>人文・思想</ProductCategoryName>
        <Parent>
          <ProductCategoryId>465610</ProductCategoryId>
          <ProductCategoryName>ジャンル別</ProductCategoryName>
          <Parent>
            <ProductCategoryId>465392</ProductCategoryId>
            <ProductCategoryName>ジャンル別</ProductCategoryName>
          </Parent>
        </Parent>
      </Parent>
    </Parent>
  </Self>
  <Self>
    <ProductCategoryId>466282</ProductCategoryId>
    <ProductCategoryName>ビジネス・経済</ProductCategoryName>
    <Parent>
      <ProductCategoryId>465610</ProductCategoryId>
      <ProductCategoryName>ジャンル別</ProductCategoryName>
      <Parent>
        <ProductCategoryId>465392</ProductCategoryId>
        <ProductCategoryName>ジャンル別</ProductCategoryName>
      </Parent>
    </Parent>
  </Self>
  <Self>
    <ProductCategoryId>502840</ProductCategoryId>
    <ProductCategoryName>能力発見・自己改革</ProductCategoryName>
    <Parent>
      <ProductCategoryId>492216</ProductCategoryId>
      <ProductCategoryName>自己啓発</ProductCategoryName>
      <Parent>
        <ProductCategoryId>466292</ProductCategoryId>
        <ProductCategoryName>実用・ホビー</ProductCategoryName>
        <Parent>
          <ProductCategoryId>465610</ProductCategoryId>
          <ProductCategoryName>ジャンル別</ProductCategoryName>
          <Parent>
            <ProductCategoryId>465392</ProductCategoryId>
            <ProductCategoryName>ジャンル別</ProductCategoryName>
          </Parent>
        </Parent>
      </Parent>
    </Parent>
  </Self>
</GetProductCategoriesForASINResult>
<ResponseMetadata>
  <RequestId>xxxx</RequestId>
</ResponseMetadata>
</GetProductCategoriesForASINResponse>

関連記事

コメントを残す

メールアドレスが公開されることはありません。