Overview
Every day, this workflow scrapes LinkedIn jobs based on your keywords, saves them in a Google Sheet, and sends them by email.
How it works
- The workflow runs every day at noon.
- The Apify node sends a request to a LinkedIn scraper actor on Apify, which scrapes and returns the data.
- The code node formats the data we want and builds the HTML needed to make the emails look good. We use inline if statements for cases where the salary isn't listed or the job doesn’t say if it’s on-site, remote, or hybrid.
- At the same time, we add the LinkedIn jobs we scraped to a Google Sheet so we can check them later.
- We combine everything into one list.
- The Gmail node uses the
map() function to list all the items we scraped and formatted. It customizes the subject line and heading of the email to include the current date.
Setup steps
- Create a new Google Sheet and add the headers you want. Adjust the Google Sheets node to use your newly created Sheet.
- Customize the JSON in the
Get LinkedIn jobs node. Note that this workflow currently uses the LinkedIn Jobs Scraper - No Cookies actor on Apify.
- Leave
date_posted as is.
- Adjust
keywords to change the job you want to scrape. You can use Boolean operators like AND or NOT in your search.
- Adjust
limit to the number of jobs you want to scrape.
- Adjust
location to match your location.
- Leave
sort as is to get the most recent jobs first.
- (Optional) Edit the HTML in the code node to change how the listings will look in the email.
- Add your email to the Gmail node.
Requirements
- Apify account
- Apify community node installed. If you don’t want to install the community node, you can use a regular HTTP node and call the HTTP directly. Check their API docs to see what endpoint to call.
- Google Sheets API enabled in Google Cloud Console and credentials added to n8n
- Gmail API enabled in Google Cloud Console credentials added to n8n
Possible customizations
- Add full job descriptions to the Google Sheet and email
- Continue the flow to create a tailored CV for each job
- Use AI to read the job descriptions and pull out the key skills the job posting is asking for