Here is a short video to show you how to find website and domains from company names only.
STEP 1 : Autocomplete Clearbit API
STEP 2: Concatenate
STEP 3: Adding this code to the App script
function FETCH(url) {
var response = UrlFetchApp.fetch(url);
Logger.log(response.getContentText());
var out = JSON.parse(response.getContentText());
return out[0]['domain'];}
Comentários