Import Amazon RSS Feeds into Google Sheets

This Google Script fetches and parse the XML feed for the Amazon Best Sellers (books) list and imports the list into the current active Google Spreadsheet.

It uses the Google Feeds API to load the Amaozn XML feed as JSON and parses the JSON results using the built-in Utilities.jsonParse method of Apps Script.

function parseAmazon() {
  var url = 'http://www.amazon.com/gp/rss/bestsellers/books?num=10&tag=ctrlq-20';

  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getActiveSheet();
  sheet.clear();

  var response = UrlFetchApp.fetch(
    'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=' + encodeURIComponent(url)
  );
  var amazon = Utilities.jsonParse(response.getContentText());

  Logger.log(amazon.responseData.feed.entries[0].publishedDate);

  var headerNames = ['Book Name', 'Amazon URL'];
  var headRange = ss.getActiveSheet().getRange('A1:B1');
  headRange.setValues([headerNames]);
  headRange.setHorizontalAlignment('center');
  headRange.setFontWeight('bold');

  for (var i = 0; i < amazon.responseData.feed.entries.length; i++) {
    var entry = amazon.responseData.feed.entries[i];
    headRange.offset(i + 1, 0).setValue(entry.title);
    headRange.offset(i + 1, 1).setValue(entry.link);
  }
}

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 🫶🏻