Wellfound Jobs Scraper
Try for free
2 hours trial then $30.00/month - No credit card required now
Go to Store
This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?
See alternative ActorsWellfound Jobs Scraper
mscraper/wellfound-jobs-scraper
Try for free
2 hours trial then $30.00/month - No credit card required now
A job scraper for Wellfound (formerly AngelList Talent) is essentially a tool to extract job listings and associated job details from the Wellfound platform.
For example: if I want to scrape jobs posted in last 7 days
Hi, I added an option to filter listing jobs. For your case, add following code in jobFilterFunction
:
1async ({ jobs }) => 2 jobs.filter(({ published }) => 3 [ 4 'today', 5 'yesterday', 6 '2 days ago', 7 '3 days ago', 8 '4 days ago', 9 '5 days ago', 10 '6 days ago', 11 '7 days ago', 12 ].includes(published), 13 )