Turn a column of names, emails, companies, or LinkedIn URLs into enriched rows — profile data, work emails, and company info — without leaving your spreadsheet. Add one short Apps Script function and enrich with a formula, or run a batch script over the whole column.
Sign up for free — your key is in your dashboard under Settings → API Key. New accounts start with 25 credits.
In your sheet, go to Extensions → Apps Script. Delete the placeholder code and paste the function from the next section.
Replace YOUR_API_KEY with your key (or store it in Script Properties), then save the project.
Back in the sheet, type =LINKFINDER(A2, "company_name_to_website") in a cell and drag it down. For big lists, use the batch script instead — see below.
/**
* Enrich a value with LinkFinder AI.
* @param {string} input The cell value (name, email, company, or LinkedIn URL)
* @param {string} type The request type, e.g. "company_name_to_website"
* @customfunction
*/
function LINKFINDER(input, type) {
var apiKey = "YOUR_API_KEY"; // or use PropertiesService for safety
var res = UrlFetchApp.fetch("https://api.linkfinderai.com", {
method: "post",
contentType: "application/json",
headers: { "Authorization": "Bearer " + apiKey },
payload: JSON.stringify({ type: type, input_data: input }),
muteHttpExceptions: true
});
var data = JSON.parse(res.getContentText());
if (data.status !== "success" || !data.result) return "Not found";
// Return a single field, or JSON.stringify(data.result) for everything
return typeof data.result === "object"
? JSON.stringify(data.result)
: data.result;
}=LINKFINDER() formula is perfect for a few rows, but Google Sheets can recalculate custom functions repeatedly — which re-spends credits and can hit script time limits on big sheets. For hundreds or thousands of rows, run the batch script instead: it processes each row once, skips rows already filled, and paces itself against rate limits.
=LINKFINDER() that calls the LinkFinder AI API and returns LinkedIn and company data into a cell. Apps Script is built into every sheet under Extensions → Apps Script — no marketplace add-on needed.type field. Full list in the API documentation.Get a free API key with 25 credits, paste the function, and enrich a column in minutes.