Workflow

Validated Business Email Extraction Workflow

Per target city/category: Scavio Local Pack + dorked search for emails + Hunter validation. Outputs deliverable list.

Overview

Discovery via Scavio Local Pack + dorked email search. Validation via Hunter/ZeroBounce. Output: deliverable validated emails.

Trigger

On-demand per city/category batch

Schedule

On-demand

Workflow Steps

1

Scavio Local Pack search per city/category

Pull business names + websites if present.

2

Per business: dorked email search

site:{domain} OR "@{domain}" mailto.

3

Extract candidate emails via regex

Standard email regex on snippet text.

4

Validate via Hunter / ZeroBounce / NeverBounce

Drop catch-all and disposable.

5

Tag by deliverability score

Only ship 'valid' / 'accept-all with high confidence'.

6

Export to CRM / outreach tool

Smartlead / Instantly / Lemlist / etc.

Python Implementation

Python
import requests, os, re
H = {'x-api-key': os.environ['SCAVIO_API_KEY']}
EMAIL_RE = r'[\w.+-]+@[\w-]+\.[\w.-]+'

def find_emails(business):
    domain = business.get('website')
    if not domain: return []
    q = f'site:{domain} OR "@{domain}"'
    r = requests.post('https://api.scavio.dev/api/v1/search', headers=H, json={'query': q}).json()
    text = ' '.join(o.get('snippet','') for o in r.get('organic_results', []))
    return list(set(re.findall(EMAIL_RE, text)))

JavaScript Implementation

JavaScript
// Same flow in TS.

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Frequently Asked Questions

Discovery via Scavio Local Pack + dorked email search. Validation via Hunter/ZeroBounce. Output: deliverable validated emails.

This workflow uses a on-demand per city/category batch. On-demand.

This workflow uses the following Scavio platforms: google. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 500 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

Validated Business Email Extraction Workflow

Per target city/category: Scavio Local Pack + dorked search for emails + Hunter validation. Outputs deliverable list.