The Amazon API returns the response in XML format with the ItemAttributes node containing the bulk of the information about the product including the title, author’s name, list price, physical dimensions and so on.
B000A2XB9U Rockin' the Corps 014381273229 1999 USD $19.99
The XMLService of Google Apps Script can be used to parse the response group as shown below:
function parseAmazonXML(xml){ var obj = {}; var xmlData = XmlService.parse(xml); var element = xmlData.getElement(); var items = element.getElement("Items").getElements("Item"); for (var i = 0; i