The Problem
Sales teams build outbound lists manually by searching Google Maps, copying business names, addresses, and phone numbers into spreadsheets. The process is slow, error-prone, and produces stale data that tanks email deliverability.
The Scavio Solution
Use Scavio to query Google Maps programmatically, extract verified business details, and pipe them directly into your CRM or cold email tool. Each search returns structured name, address, phone, rating, and review count fields ready for enrichment.
Before
Spending 3-4 hours per day manually copying Google Maps listings into spreadsheets, ending up with incomplete records and outdated contact info.
After
Automated pipeline pulls fresh business data in minutes, enriches CRM records with verified addresses and phone numbers, and keeps outbound lists current.
Who It Is For
Cold email agencies and B2B sales teams targeting local businesses.
Key Benefits
- Structured business data from Google Maps in one API call
- Verified addresses and phone numbers for higher deliverability
- Automated enrichment eliminates manual copy-paste
- Fresh data on every run prevents stale outreach lists
Python Example
import requests
def fetch_leads(niche: str, location: str) -> list:
resp = requests.post(
"https://api.scavio.dev/api/v1/search",
headers={"x-api-key": SCAVIO_API_KEY, "Content-Type": "application/json"},
json={"query": f"{niche} in {location}", "platform": "google", "limit": 20}
)
leads = []
for r in resp.json().get("results", []):
leads.append({
"name": r.get("title"),
"link": r.get("link"),
"snippet": r.get("snippet"),
})
return leads
leads = fetch_leads("plumbing contractors", "Austin TX")
for lead in leads:
print(f"{lead['name']} | {lead['link']}")JavaScript Example
const H = {'x-api-key': process.env.SCAVIO_API_KEY, 'Content-Type': 'application/json'};
fetch('https://api.scavio.dev/api/v1/search', {method: 'POST', headers: H, body: JSON.stringify({query: 'example', country_code: 'us'})}).then(r => r.json()).then(d => console.log(d.organic_results?.length + ' results'));Platforms Used
Web search with knowledge graph, PAA, and AI overviews