leadfinder-api
v1.1.0
Published
Free Google Maps lead finder API client. Find business names, phones, websites, ratings for any niche in any city.
Maintainers
Readme
leadfinder-api
Free Google Maps lead finder. Get business names, phone numbers, websites, ratings, and addresses for any niche in any city.
CLI Usage (no install needed)
Try it instantly with npx -- no install, no signup, no API key:
# Quick search
npx leadfinder-api dentists miami
# Multi-word niche and city
npx leadfinder-api --niche "real estate agents" --city "Los Angeles"
# Raw JSON output (pipe to jq, files, etc.)
npx leadfinder-api dentists miami --json
# Export to CSV file
npx leadfinder-api --niche "real estate agents" --city "Los Angeles" --csv leads.csv
# Help
npx leadfinder-api --helpInstall (as a library)
npm install leadfinder-apiProgrammatic Usage
const { findLeads } = require('leadfinder-api');
const results = await findLeads('dentists', 'Miami');
console.log(results.data);
// [
// { businessName: 'Bright Smile Dental', phone: '(305) 271-4321', rating: 4.8, ... },
// ...
// ]What you get
Each lead includes:
- Business name
- Phone number
- Website URL
- Full address
- Google rating (1-5)
- Review count
- Business category
Free tier
- 5 leads per request
- 10 requests per IP per day
- No API key needed
- No signup required
Need more?
Get 100+ leads as a CSV download for just $5 at LeadFinder.
API Documentation
Full docs with curl, Python, and JavaScript examples: leadscraper-coral.vercel.app/docs.html
Embed on your website
<script src="https://leadscraper-coral.vercel.app/widget.js"></script>License
MIT
