
Apollo Lead Scraper: Build a B2B Lead Pipeline in 20 Lines of Code
Building outbound sales? You need leads. Apollo.io is great, but their API starts at $49/month and the free tier is limited. The Apollo Lead Scraper API gives you direct access to B2B lead data — names, job titles, emails, company info — via a simple REST endpoint. Quick Start curl -X GET "https://apollo-lead-scraper.p.rapidapi.com/apollo-lead-scraper/search?query=CTO+fintech+San+Francisco&limit=10" \ -H "X-RapidAPI-Key: YOUR_API_KEY" \ -H "X-RapidAPI-Host: apollo-lead-scraper.p.rapidapi.com" Sample Response: { "results" : [ { "name" : "Jane Smith" , "title" : "Chief Technology Officer" , "company" : "FinTech Corp" , "email" : "jane.smith@fintechcorp.com" , "location" : "San Francisco, CA" } ] } Node.js — Export Leads to CSV const axios = require ( ' axios ' ); const fs = require ( ' fs ' ); async function findLeads ( role , industry , city ) { const { data } = await axios . get ( ' https://apollo-lead-scraper.p.rapidapi.com/apollo-lead-scraper/search ' , { params : { query : ` ${ role
Continue reading on Dev.to JavaScript
Opens in a new tab



