Search YouTube with Google Script and YouTube API

This Google Script shows how to query the YouTube API to search videos by keywords. The source data is in a column in Google Spreadsheet and we connect to the YouTube Data API via Google Apps Script. The YouTube service should be in enabled in the Google Cloud Platform project.

function findYouTubeVideoByKeywords() {
  // get the search query from Google Sheets
  var sheet = SpreadsheetApp.getActiveSheet();
  var data = sheet.getDataRange().getValues();

  // iterate through all rows in the sheet
  for (var d = 1, l = data.length; d < l; d++) {
    // find the top result only
    var results = YouTube.Search.list('id,snippet', {
      q: data[d][0],
      maxResults: 1,
    });

    // was a matching video found on YouTube?
    if (results.pageInfo.totalResults !== 0) {
      var item = results.items[0];
      var snippet = item.snippet;
      var response = [
        item.id.videoId,
        snippet.title,
        snippet.description,
        new Date(snippet.publishedAt),
        snippet.channelId,
        snippet.channelTitle,
        snippet.thumbnails['default']['url'],
      ];
      // write the response to Google Sheet
      sheet.getRange(d + 1, 4, 1, response.length).setValues([response]);
    }

    // add a sleep between calls to avoid hitting the rate limit
    Utilities.sleep(1000);
  }

  // refresh the Google Spreadsheet
  SpreadsheetApp.flush();
}

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