Hunter.io Scraper
Spider read hunter.io in 456 ms without a browser and returned 118 lines of clean markdown, including sections like "Discover", "Email Finder" and "Email Verifier".
Hunter is your all-in-one email outreach platform. Find and connect with the people that matter to your business.No credit card required. Free plan.Trusted by leadingcompanies.### Discover.Identify relevant leads based on your ideal customer profile.### Domain Search.Find the best person to contact from a company name or website.### Email Finder.Type a name, get a verified email address. Our high match rate helps you get the most from your lists.### Email Verifier.Avoid bounces and protect your sender reputation.*> saving time and building pipelines and prospecting.*> Before we had Hunter in place I was spending a long time guessing emails and using up valuable time every day. The email verifier is also a> Commercial Account Executive at Lattice### Send personal emails, at scale.Easily personalize and review the emails you send so they always sound personal and relevant.### Reach inboxes, not the spam folder.Hunter verifies your lists and sends emails from your own Gmail, Google Workspace or Outlook account for optimal deliverability.### Powerful, yet simple.Email Sequences includes the exact features you need for outreach success.> We use Hunter Sequences to source qualified buyers for some of our clients.*> The product is incredibly easy to use### Rely on our native CRM integrations, our Zapier integration or our APIsto sync your data to 5,000+ destinations.### Got a large appetite for Hunter’s industry leading email data?Access Hunter at Scale using bulk tasks or the API, and only pay for the credits you need.> My company, SparkToro, has used Hunter*> features for years. It’s not just that we love it; it’s that our customers do. Working with Hunter is easy,*> our customers are happy; what more could you ask for?## Stay compliant. 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 hunter.io.
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://hunter.io/search/stripe.com");
// 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://hunter.io/search/stripe.com");
await page.content(8000);
const data = await page.evaluate(`(() => {
const contacts = [];
document.querySelectorAll(".result-item, .email-result").forEach(el => {
const name = el.querySelector(".result-name, .contact-name")?.textContent?.trim();
const email = el.querySelector(".result-email, .email-address")?.textContent?.trim();
const position = el.querySelector(".result-position, .job-title")?.textContent?.trim();
const confidence = el.querySelector(".confidence-score, .score")?.textContent?.trim();
if (name) contacts.push({ name, email, position, confidence });
});
return JSON.stringify({ total: contacts.length, contacts: contacts.slice(0, 15) });
})()`);
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 hunter.io costs to scrape.
The capture above cost $0.000189 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 Directories & Listings scrapers.
Yellow Pages Scraper
Extract business listings, phone numbers, addresses, and customer reviews from Yellow Pages local directories.
White Pages Scraper
Extract people search results, phone lookups, address records, and background check summaries from White Pages.
Manta Scraper
Extract small business profiles, company revenue estimates, employee counts, and industry classifications from Manta.
Start scraping hunter.io.
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.