ItemAttributes Response Group

Description

The ItemAttributes response group returns the Manufacturer's Product Number (MPN) and provides information about each item in the response that is unique to the item's product category (Books, DVD, Electronics, Apparel, etc.) The MPN number is tagged with <MPN>.

For example, if an item is in the Computer product category, Amazon Web Services (AWS) will return BatteryType, CaseType, CdRwDescription, etc. (if these values are available for the item). If a response contains products that span product categories, this response group will return a different set of elements for each product in the response.

REST Sample Response and Request

Sample Response (REST)

<?xml version="1.0" encoding="UTF-8"?>
<ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2007-01-17">
  <OperationRequest>
    <HTTPHeaders>
      <Header Name="UserAgent" Value="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"/>
    </HTTPHeaders>
    <RequestId>0NSJAG4Y97K07K4SFJX0</RequestId>
    <Arguments>
      <Argument Name="Service" Value="AWSECommerceService"/>
      <Argument Name="AssociateTag" Value="[Your Associate ID Here]"/>
      <Argument Name="AWSAccessKeyId" Value="[Your Access Key ID Here]"/>
      <Argument Name="ItemId" Value="B00008OE6I"/>
      <Argument Name="ResponseGroup" Value="ItemAttributes"/>
      <Argument Name="Operation" Value="ItemLookup"/>
    </Arguments>
  </OperationRequest>
  <Items>
    <Request>
      <IsValid>True</IsValid>
    </Request>
    <Item>
      <ASIN>B00008OE6I</ASIN>
      <ItemAttributes>
        <Feature>4.0 megapixel sensor captures enough detail to create photo-quality prints up to 11 x 14</Feature>
        <Feature>3x optical zoom and 3.6x digital zoom (10.8x total)</Feature>
        <Feature>Stainless steel shell; up to 3 minutes of video with sound</Feature>
        <Feature>Compatible with CompactFlash Type I cards; 32 MB card included</Feature>
        <Feature>Powered by rechargeable lithium-ion battery (NB-1LH ); connects to PCs and Macs via USB 1.1</Feature>
        <ItemDimensions>
          <Height Units="hundredths-inches">224</Height>
          <Length Units="hundredths-inches">109</Length>
          <Weight Units="hundredths-pounds">41</Weight>
          <Width Units="hundredths-inches">343</Width>
        </ItemDimensions>
        <ListPrice>
          <Amount>44999</Amount>
          <CurrencyCode>USD</CurrencyCode>
          <FormattedPrice>$449.99</FormattedPrice>
        </ListPrice>
        <Manufacturer>Canon Cameras US</Manufacturer>
        <NumberOfItems>1</NumberOfItems>
        <PackageDimensions>
          <Height Units="hundredths-inches">320</Height>
          <Length Units="hundredths-inches">980</Length>
          <Weight Units="hundredths-pounds">260</Weight>
          <Width Units="hundredths-inches">660</Width>
        </PackageDimensions>
        <ProductGroup>Photography</ProductGroup>
        <Title>Canon PowerShot S400 4MP Digital Camera w/ 3x Optical Zoom</Title>
        <UPC>013803023961</UPC>
        <Weight Units="pounds">0.41</Weight>
        <Width Units="inches">3.43</Width>
      </ItemAttributes>
    </Item>
  </Items>
</ItemLookupResponse>

The Request that Generated the Response (REST)

http://webservices.amazon.com/onca/xml?Service=AWSECommerceService
    &AWSAccessKeyId=[Your Access Key ID Here]
    &AssociateTag=[Your Associate ID Here]
    &Operation=ItemLookup
    &ItemId=B00008OE6I
    &ResponseGroup=ItemAttributes