The ItemAttributes response group provides information about each item in the response that is unique to the item's product category (Books, DVD, Electronics, Apparel, etc.)
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.
Sample Response (REST)
<?xml version="1.0" encoding="UTF-8"?>
<ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2004-08-01">
<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="SubscriptionId" Value="[Your Subscription 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>
<Height Units="inches">2.24</Height>
<Length Units="inches">1.09</Length>
<ListPrice>
<Amount>44999</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$449.99</FormattedPrice>
</ListPrice>
<Manufacturer>Canon Cameras US</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<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
&SubscriptionId=[Your Subscription ID Here]
&AssociateTag=[Your Associate ID Here]
&Operation=ItemLookup
&ItemId=B00008OE6I
&ResponseGroup=ItemAttributes