Wellfound Scraper
Spider read wellfound.com in 120 ms without a browser and returned 111 lines of clean markdown, including sections like "04Show what you can do, not just where you've been", "Reach the right candidates. Automatically" and "Jobs found. Teams built".
### 04Show what you can do, not just where you've been.Your profile goes past the résumé: projects, work, and what you'd actually contribute.## Reach the right candidates. Automatically.The agentic recruiting platform that does what manual screening can't: it evaluates every candidate, surfaces the ones who'd get filtered out, and runs personalized outreach until they reply. Done by AI, guided by you.Explore AI candidate sourcing →## Jobs found. Teams built."I got my tech job on Wellfound 4 years ago and I'm still happy! Pays well, great culture, and unlimited PTO.""Half of the offers I give are sourced from Wellfound. It's the best product for anyone looking for startup talent.""I love Wellfound. I got my current job entirely through the site last year. Super easy to use and I love the UI.""I can't imagine my day-to-day without this platform. Life would be a lot more difficult."## Common questions.Wellfound is the hiring marketplace for startups: post jobs for free with Wellfound Jobs, source with AI agents through Wellfound Reach, or get done-for-you recruiting with Wellfound Autopilot, connected to a network of 10M+ opted-in candidates.Is Wellfound free to post jobs?Yes. Unlimited jobs, unlimited applicants, and a built-in ATS are $0 forever. Promoting a job for extra visibility is optional and paid, as are Wellfound Reach (AI sourcing) and Autopilot (managed hiring).Is Wellfound free for job seekers?Yes. Creating a profile and applying to jobs on Wellfound is always free for candidates.How many startups and candidates are on Wellfound?27,000+ startups hire on Wellfound, drawing on an exclusive pool of 10M+ candidates who opted in to hear from startups, plus 500M+ enriched external profiles for AI sourcing.Does Wellfound offer AI recruiting software? The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on wellfound.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://wellfound.com/role/r/software-engineer");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://wellfound.com/role/r/software-engineer");
await page.content(10000);
const data = await page.evaluate(`(() => {
const jobs = [];
document.querySelectorAll("[data-test='StartupResult']").forEach(el => {
const company = el.querySelector("h2")?.textContent?.trim();
const title = el.querySelector("[data-test='JobListingCard'] a")?.textContent?.trim();
const salary = el.querySelector("[data-test='JobListingCard'] .salary")?.textContent?.trim();
const location = el.querySelector("[data-test='JobListingCard'] .location")?.textContent?.trim();
if (company) jobs.push({ company, title, salary, location });
});
return JSON.stringify({ total: jobs.length, jobs: jobs.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What wellfound.com costs to scrape.
The capture above cost $0.000194 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Jobs scrapers.
Google Jobs Scraper
Extract job listings, salaries, company info, and application links from Google Jobs search.
Indeed Scraper
Extract job postings, salary estimates, company reviews, and application data from Indeed. Stealth browsing handles dynamic search results and anti-bot measures across all Indeed domains.
Glassdoor Scraper
Extract company reviews, salary data, interview questions, and job listings from Glassdoor.
Start scraping wellfound.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.