# Google Maps Leads with Verified Emails (`leadproof/google-maps-verified-leads`) Actor

B2B leads from Google Maps with SMTP-verified email addresses. Filter by review count, dedupe against your CRM export, and pay only for delivered verified leads.

- **URL**: https://apify.com/leadproof/google-maps-verified-leads.md
- **Developed by:** [aniam Ben or](https://apify.com/leadproof) (community)
- **Categories:** Lead generation, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $200.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Google Maps Leads with Verified Emails

B2B leads that are actually contactable. This Actor finds businesses on Google Maps, scrapes their websites for email addresses, **SMTP-verifies every email**, and dedupes against your existing contacts — then delivers only the leads that survived all of it.

**You pay only for delivered verified leads.** Businesses without a website, without a findable email, with an undeliverable email, or already in your CRM cost you nothing.

### What you get

Each delivered lead:

| Field | Example |
|---|---|
| `business_name` | Summit Chiropractic & Wellness |
| `email` | drsmith@summitchiro.com — **SMTP-verified deliverable** |
| `email_status` | `ok` (or `catch_all` if you enable risky emails) |
| `phone` | (208) 555-0142 |
| `website` | summitchiro.com |
| `address`, `city`, `state`, `zip` | 1234 Main St, Boise, ID 83702 |
| `rating`, `reviews` | 4.9, 187 |
| `google_maps_url`, `place_id` | direct Maps link + stable ID |

Ready for CSV export or direct CRM import.

### How to use

1. **Search terms** — the business type(s) you sell to: "dental clinic", "med spa", "HVAC contractor"…
2. **Locations** — cities or states: "Austin, Texas", "Idaho, USA"…
3. **Maximum leads** — the run stops when it delivers this many (up to 1,000 per run).
4. **Minimum reviews** — e.g. 50+ Google reviews filters for established, active businesses with buying power.
5. **Dedup (optional)** — paste emails/domains to exclude, or give a URL to your CRM's CSV export. Every email, domain and phone number in it is excluded, so you only pay for businesses that are *new to you*.

### Why verified matters

Scraped lead lists typically bounce 10–40%. Bounces burn your sender reputation and get your domain blacklisted. Every email this Actor delivers passed a real-time SMTP mailbox check — your outreach lands.

### Quality report

Every run stores a `SUMMARY` in the key-value store — how many businesses were screened and exactly why the rest were rejected:

```json
{
  "delivered": 50,
  "places_found": 740,
  "below_min_reviews": 213,
  "no_website": 147,
  "no_email_found": 188,
  "email_verification_failed": 74,
  "excluded_by_dedupe": 62,
  "duplicate_place": 6
}
````

You see exactly what you paid for — and what you didn't pay for.

### FAQ

**What counts as a delivered lead?** A unique business with an SMTP-verified email that passed your filters and dedup. Everything else is free.

**Can I get leads not already in my CRM?** Yes — that's the dedupe input. Export your contacts to CSV, host it anywhere reachable by URL (e.g. a private S3/Drive link), and the run excludes every match by email, domain, and phone.

**What are catch-all emails?** Domains that accept mail for any address — deliverability can't be confirmed mailbox-by-mailbox. They're excluded by default; enable *Include catch-all emails* to receive them (marked `catch_all`).

**How fresh is the data?** Scraped live from Google Maps and the business's own website at run time. Nothing comes from a stale database.

***

*Only need email verification? Try our [Bulk Email Verifier](https://apify.com/leadproof/bulk-email-verifier) — $4.90 per 1,000 checks.*

# Actor input Schema

## `searchTerms` (type: `array`):

What kind of businesses to find, e.g. "dental clinic", "massage therapist", "HVAC contractor".

## `locations` (type: `array`):

Cities, regions or states to search, e.g. "Austin, Texas" or "Idaho, USA". One search per term per location.

## `maxLeads` (type: `integer`):

The run stops once this many verified leads are delivered. You pay only for delivered leads.

## `minReviews` (type: `integer`):

Only include businesses with at least this many Google reviews — a simple proxy for active, established businesses.

## `includeRisky` (type: `boolean`):

Catch-all domains accept mail for any address, so deliverability can't be confirmed mailbox-by-mailbox. Off = only fully verified (SMTP 'ok') emails are delivered.

## `excludeEmails` (type: `array`):

Leads whose email appears here are skipped — paste emails from your CRM to get only NEW contacts.

## `excludeDomains` (type: `array`):

Leads whose email or website domain appears here are skipped, e.g. "acmeclinic.com".

## `dedupeCsvUrl` (type: `string`):

Public or signed URL to a CSV/TXT export. All emails, domains and phone numbers found in it are excluded from delivery.

## `concurrency` (type: `integer`):

How many candidate websites are scraped in parallel.

## Actor input object example

```json
{
  "searchTerms": [
    "dental clinic"
  ],
  "locations": [
    "Boise, Idaho"
  ],
  "maxLeads": 3,
  "minReviews": 5,
  "includeRisky": false,
  "concurrency": 10
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "dental clinic"
    ],
    "locations": [
        "Boise, Idaho"
    ],
    "maxLeads": 3,
    "minReviews": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("leadproof/google-maps-verified-leads").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["dental clinic"],
    "locations": ["Boise, Idaho"],
    "maxLeads": 3,
    "minReviews": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("leadproof/google-maps-verified-leads").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "dental clinic"
  ],
  "locations": [
    "Boise, Idaho"
  ],
  "maxLeads": 3,
  "minReviews": 5
}' |
apify call leadproof/google-maps-verified-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=leadproof/google-maps-verified-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Maps Leads with Verified Emails",
        "description": "B2B leads from Google Maps with SMTP-verified email addresses. Filter by review count, dedupe against your CRM export, and pay only for delivered verified leads.",
        "version": "0.1",
        "x-build-id": "HF2FHOmSucRWU0ZWj"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/leadproof~google-maps-verified-leads/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-leadproof-google-maps-verified-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/leadproof~google-maps-verified-leads/runs": {
            "post": {
                "operationId": "runs-sync-leadproof-google-maps-verified-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/leadproof~google-maps-verified-leads/run-sync": {
            "post": {
                "operationId": "run-sync-leadproof-google-maps-verified-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "searchTerms",
                    "locations"
                ],
                "properties": {
                    "searchTerms": {
                        "title": "Business type / search terms",
                        "type": "array",
                        "description": "What kind of businesses to find, e.g. \"dental clinic\", \"massage therapist\", \"HVAC contractor\".",
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "Cities, regions or states to search, e.g. \"Austin, Texas\" or \"Idaho, USA\". One search per term per location.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxLeads": {
                        "title": "Maximum leads to deliver",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "The run stops once this many verified leads are delivered. You pay only for delivered leads.",
                        "default": 50
                    },
                    "minReviews": {
                        "title": "Minimum Google reviews",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only include businesses with at least this many Google reviews — a simple proxy for active, established businesses.",
                        "default": 0
                    },
                    "includeRisky": {
                        "title": "Include catch-all emails",
                        "type": "boolean",
                        "description": "Catch-all domains accept mail for any address, so deliverability can't be confirmed mailbox-by-mailbox. Off = only fully verified (SMTP 'ok') emails are delivered.",
                        "default": false
                    },
                    "excludeEmails": {
                        "title": "Exclude emails (your existing contacts)",
                        "type": "array",
                        "description": "Leads whose email appears here are skipped — paste emails from your CRM to get only NEW contacts.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "excludeDomains": {
                        "title": "Exclude domains",
                        "type": "array",
                        "description": "Leads whose email or website domain appears here are skipped, e.g. \"acmeclinic.com\".",
                        "items": {
                            "type": "string"
                        }
                    },
                    "dedupeCsvUrl": {
                        "title": "Dedupe file URL (CSV export from your CRM)",
                        "type": "string",
                        "description": "Public or signed URL to a CSV/TXT export. All emails, domains and phone numbers found in it are excluded from delivery."
                    },
                    "concurrency": {
                        "title": "Website scraping concurrency",
                        "minimum": 1,
                        "maximum": 25,
                        "type": "integer",
                        "description": "How many candidate websites are scraped in parallel.",
                        "default": 10
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
