Get Book Details from Amazon with Google Apps Script

Google Apps Script can connect to the Amazon Product Advertising API to get the product details, price and availability of any book (by ISBN) or any other item listed on the Amazon website (by ASIN). You would need to sign-up for a free AWS (Amazon Web Services) account and also key in your Amazon Associate tag, the AWS Access ID (or SubscriptionID) and the AWS Secret Access key.

The script is for Amazon US (region set to com) but it would work for other Amazon country website as well though your Associate Tag may be different for different Amazon Website. See the Amazon Price Tracker to see the code in action.

function AmazonAPI(isbn) {
  var region = 'com',
    method = 'GET',
    uri = '/onca/xml',
    host = 'ecs.amazonaws.' + region;

  var private_key = 'AWS Secret Access Id',
    public_key = 'AWS Access Key',
    associate_tag = 'labnol-20';

  var params = {
    Service: 'AWSECommerceService',
    Version: '2011-08-01',
    AssociateTag: associate_tag,
    Operation: 'ItemLookup',
    SearchIndex: 'Books',
    ItemId: isbn,
    Timestamp: new Date().toISOString(),
    AWSAccessKeyId: public_key,
    IdType: 'ISBN',
    ResponseGroup: 'ItemAttributes',
  };

  var canonicalized_query = Object.keys(params).sort();

  canonicalized_query = canonicalized_query.map(function (key) {
    return key + '=' + encodeURIComponent(params[key]);
  });

  var string_to_sign = method + '\n' + host + '\n' + uri + '\n' + canonicalized_query.join('&');

  var signature = Utilities.base64Encode(Utilities.computeHmacSha256Signature(string_to_sign, private_key));

  var request =
    'http://' + host + uri + '?' + canonicalized_query.join('&') + '&Signature=' + encodeURIComponent(signature);

  var response = UrlFetchApp.fetch(request);

  return XmlService.parse(response.getContentText());
}

function getBookInfo() {
  var isbn = 'xyz'; // Put the 10 or 13 digital ISBN here

  var o = {};
  var response = AmazonAPI(isbn);
  var a = response.getDescendants();

  for (var i = 0; i < a.length; i++) {
    if (a[i].getType() == XmlService.ContentTypes.ELEMENT) {
      switch (a[i].asElement().getName()) {
        case 'Title':
          o.title = a[i].asElement().getText();
          break;
        case 'FormattedPrice':
          o.price = a[i].asElement().getText();
          break;
      }
    }
  }

  Logger.log(o);
}

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻