Wellfound Jobs Scraper
Try for free
2 hours trial then $30.00/month - No credit card required now
View all Actors
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.
The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more
1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7 "proxy": {
8 "useApifyProxy": true,
9 "apifyProxyCountry": "US",
10 "apifyProxyGroups": [
11 "RESIDENTIAL"
12 ]
13 },
14 "listingStartUrls": [
15 {
16 "url": "https://wellfound.com/role/l/devops-engineer/seattle"
17 }
18 ],
19 "jobsFilterFunction": "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))"
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/mscraper~wellfound-jobs-scraper/runs?token=$API_TOKEN" \
26 -X POST \
27 -d @input.json \
28 -H 'Content-Type: application/json'