This recipe demonstrates how to enrich a list of user profiles with their LinkedIn profile URLs using Airtop. It takes a CSV file containing email addresses and names, searches for each person on Google, and extracts their LinkedIn profile URL from the search results.
- Node.js installed
- An Airtop API key
- Input CSV file with columns: email, first_name, last_name
- Clone this repository
- Install dependencies:
npm install
- Create a
.env
file in the root directory with your Airtop API key.cp .env.example .env
- Place your input CSV file in the
data
directory asprofiles.csv
(one has been provided as an example)
Run the script:
npm start