AI EnrichedGoogle Maps Leads,on demand
Scrape live Google Business Profiles, enhanced with owner names, emails, phone numbers, and raw website text
| Rank | Name | Category | Owner | Phone | Phone Type | City | State Code | Socials | Rating | Reviews | Claimed | Email 1 | Email 1 Status | Email 2 | Email 2 Status | Phone 1 | Phone 1 Type | Phone 1 Carrier | Phone 2 | Phone 2 Type | Phone 2 Carrier | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | SR Summit Ridge Plumbing | Plumber | Marco Delgado | marco@summitridgeplumbing.com | 1 (512) 555-0147 | mobile | Austin | TX | β | 4.9 | 312 | Yes | marco@summitridgeplumbing.com | verified | info@summitridgeplumbing.com | catch-all | 1 (512) 555-0147 | mobile | T-MOBILE USA | 1 (512) 555-0148 | landline | AT&T SOUTHWEST |
| 2 | LS Lone Star Drain Pros | Plumber | β | service@lonestardrain.com | 1 (512) 555-0283 | landline | Austin | TX | β | 4.6 | 189 | Yes | service@lonestardrain.com | catch-all | β | β | 1 (512) 555-0283 | landline | AT&T SOUTHWEST | β | β | β |
| 3 | HC Hill Country Pipe & Supply | Plumber | Bobby Tran | bobby@hillcountrypipe.com | 1 (512) 555-0419 | mobile | Austin | TX | β | 4.8 | 247 | Yes | bobby@hillcountrypipe.com | verified | quotes@hillcountrypipe.com | verified | 1 (512) 555-0419 | mobile | VERIZON WIRELESS | 1 (512) 555-0420 | landline | AT&T SOUTHWEST |
| 4 | CC Capital City Plumbing | Plumber | Rosa Jimenez | rosa@capitalcityplumbingatx.com | 1 (512) 555-0637 | mobile | Austin | TX | β | 4.9 | 156 | Yes | rosa@capitalcityplumbingatx.com | verified | β | β | 1 (512) 555-0637 | mobile | T-MOBILE USA | β | β | β |
| 5 | BC Barton Creek Mechanical | Plumber | Dan Whitfield | β | 1 (512) 555-0814 | landline | Austin | TX | β | 4.5 | 93 | β | β | β | β | β | 1 (512) 555-0814 | landline | AT&T SOUTHWEST | β | β | β |
| 6 | RP Riverside Plumbing Co | Plumber | James Kwon | james@riversideplumbingatx.com | 1 (512) 555-0392 | mobile | Austin | TX | β | 4.7 | 204 | Yes | james@riversideplumbingatx.com | verified | β | β | 1 (512) 555-0392 | mobile | VERIZON WIRELESS | β | β | β |
| 7 | OH Oak Hill Plumbing | Plumber | Terri Huang | terri@oakhillplumbing.com | 1 (512) 555-0756 | mobile | Austin | TX | β | 5 | 78 | Yes | terri@oakhillplumbing.com | verified | office@oakhillplumbing.com | catch-all | 1 (512) 555-0756 | mobile | T-MOBILE USA | β | β | β |
| 8 | TP Texas Pro Plumbing | Plumber | β | dispatch@texasproplumbing.com | 1 (512) 555-0931 | landline | Austin | TX | β | 4.4 | 127 | Yes | dispatch@texasproplumbing.com | verified | β | β | 1 (512) 555-0931 | landline | AT&T SOUTHWEST | 1 (512) 555-0932 | mobile | T-MOBILE USA |
| 9 | CP Cedar Park Plumbing | Plumber | Nate Caldwell | nate@cedarparkplumbing.com | 1 (512) 555-0218 | mobile | Austin | TX | β | 4.8 | 164 | Yes | nate@cedarparkplumbing.com | verified | β | β | 1 (512) 555-0218 | mobile | T-MOBILE USA | β | β | β |
| 10 | MP Mustang Plumbing Services | Plumber | Caleb Monroe | caleb@mustangplumbingservices.com | 1 (512) 555-0446 | mobile | Austin | TX | β | 4.7 | 118 | Yes | caleb@mustangplumbingservices.com | verified | hello@mustangplumbingservices.com | catch-all | 1 (512) 555-0446 | mobile | VERIZON WIRELESS | β | β | β |
Showing 10 of 283 demo results for βplumberβ in Austin, TX
All the data, no add ons
Other tools charge extra for enrichment. We run the full pipeline on every lead, every time. No add-ons, no premium tiers.
Owner Name
Extracted automatically from the business website and cross-referenced against public records. Around 70% of leads come back with a name attached.
Website Content & Logo
Homepage plus up to 5 subpages, fully scraped. About, services, contact pages, and the business logo pulled automatically.
Phone Numbers
Every number gets checked for line type and carrier. You'll know if you're calling a cell, a landline, or a VoIP number before you dial.
Google Maps Data
Maps ranking, rating, address, hours, category, and claimed status for every listing.
Verified Emails
We extract, verify, and rank every email found on their website so you get the best chance of landing a reply.
Social Profiles
Facebook, Instagram, LinkedIn, YouTube, Yelp, TikTok. Pulled straight from the business website automatically.
Give your agents lead gen superpowers.
Paste this into Claude Code, Cursor, Codex, or any AI assistant. Your agent can autonomously search and enrich local leads.
# LocalProspects β Search & Enrich Local Business Leads
Search for local businesses by niche and city, then enrich them with owner names, verified emails, phone numbers with line type, social profiles, and website intelligence.
## API Key
Ask the user for their LocalProspects API key before making any requests. The key starts with lp_. Get one at https://localprospects.ai/dashboard
## How It Works
1. Locations β GET /api/v1/locations?q=city+name to find the location_code
2. Search β POST /api/v1/search with keyword and location_code
3. Poll β GET /api/v1/job/:id every 5 seconds until status === "completed"
4. Results β GET /api/v1/job/:id/results to fetch enriched businesses
5. Export β Compile all results into a CSV with every field and save locally
## Step 1: Look Up Location Code
```bash
curl -s "https://localprospects.ai/api/v1/locations?q=<city>" \
-H "x-api-key: <API_KEY>"
```
Returns { locations: [{ location_code, name, full_name }] }. Pick the best match.
## Step 2: Search
```bash
curl -s -X POST https://localprospects.ai/api/v1/search \
-H "Content-Type: application/json" \
-H "x-api-key: <API_KEY>" \
-d '{"keyword": "<keyword>", "location_code": <location_code>}'
```
Returns a job_id. Enrichment runs in the background (30-90 seconds).
## Step 3: Poll for Enrichment
Poll every 5 seconds:
```bash
curl -s https://localprospects.ai/api/v1/job/<job_id> \
-H "x-api-key: <API_KEY>"
```
When status === "completed", fetch results.
## Step 4: Fetch Results
```bash
curl -s https://localprospects.ai/api/v1/job/<job_id>/results \
-H "x-api-key: <API_KEY>"
```
## Step 5: Export to CSV
Ask the user before exporting. Flatten the enriched results into a CSV using this exact header order:
```csv
Google Maps Rank,Name,Category,Website,Owner,Email,Phone,Phone Type,Address,City,State,Rating,Reviews,Review Snippet,Claimed,Socials,Logo URL,Main Image URL,Email 1,Email 1 Status,Email 2,Email 2 Status,Email 3,Email 3 Status,Email 4,Email 4 Status,Email 5,Email 5 Status,Phone 1,Phone 1 Type,Phone 1 Carrier,Phone 2,Phone 2 Type,Phone 2 Carrier,Phone 3,Phone 3 Type,Phone 3 Carrier,Phone 4,Phone 4 Type,Phone 4 Carrier,Phone 5,Phone 5 Type,Phone 5 Carrier,Page 1 URL,Page 1 Title,Page 1 Meta,Page 1 Text,Page 2 URL,Page 2 Title,Page 2 Meta,Page 2 Text,Page 3 URL,Page 3 Title,Page 3 Meta,Page 3 Text,Page 4 URL,Page 4 Title,Page 4 Meta,Page 4 Text,Page 5 URL,Page 5 Title,Page 5 Meta,Page 5 Text
```
Use the best-match primary fields for Owner, Email, Phone, and Phone Type. Put all discovered emails and phones into the numbered columns with their verification status, line type, and carrier. Put crawled website pages into Page 1-5 URL, Title, Meta, and Text columns.
Save the CSV to the user's machine, ready to import into any CRM (GHL, Instantly, HubSpot, etc.).
## Notes
- 1 lead credit per business enriched. Failed enrichments refunded automatically. Polling is free.
- Enrichment takes 30-90 seconds depending on how many businesses have websites.Works with Claude Code, Cursor, Codex, and any agent that reads markdown skill files.
See how we compare
We checked. Nobody else does owner names, email verification, phone intelligence, and website scraping in the same tool.
Pricing
Each plan allows you to extract up to a certain amount of leads per month. Limits reset monthly, unused leads do not roll over.
You're saving $120
- +10,000 leads/mo
- +Full enrichment pipeline
- +API access
- +CSV exports
You're saving $120
- +20,000 leads/mo
- +Full enrichment pipeline
- +API access
- +CSV exports
You're saving $216
- +50,000 leads/mo
- +Full enrichment pipeline
- +API access
- +CSV exports
Try Local Prospects for free
Start searching local businesses, no credit card required.
Frequently asked questions
Your first search is free
Search any niche across one city or many. No credit card required.