Wellfound Jobs Scraper avatar
Wellfound Jobs Scraper

Under maintenance

Pricing

$30.00/month + usage

Go to Store
Wellfound Jobs Scraper

Wellfound Jobs Scraper

Under maintenance

Developed by

mscraper

mscraper

Maintained by Community

A job scraper for Wellfound (formerly AngelList Talent) is essentially a tool to extract job listings and associated job details from the Wellfound platform.

0.0 (0)

Pricing

$30.00/month + usage

4

Total users

120

Monthly users

10

Runs succeeded

>99%

Last modified

a year ago

RO

Possibility to scrape job based on posting date

Closed

rose_ostrich opened this issue
2 years ago

For example: if I want to scrape jobs posted in last 7 days

mscraper avatar

Hi, I added an option to filter listing jobs. For your case, add following code in jobFilterFunction:

async ({ jobs }) =>
jobs.filter(({ published }) =>
[
'today',
'yesterday',
'2 days ago',
'3 days ago',
'4 days ago',
'5 days ago',
'6 days ago',
'7 days ago',
].includes(published),
)