# Google Maps Scraper — Business Leads with Email & WhatsApp (`forge-of-leads/google-maps-scraper`) Actor

Extract business leads from Google Maps at scale: name, category, rating, reviews, address, phone, website — plus email, Instagram, Facebook, WhatsApp & LinkedIn scraped from each site. Perfect for lead generation and B2B outreach.

- **URL**: https://apify.com/forge-of-leads/google-maps-scraper.md
- **Developed by:** [Forge of Leads](https://apify.com/forge-of-leads) (community)
- **Categories:** Lead generation, E-commerce, Automation
- **Stats:** 4 total users, 3 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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 Scraper — Business Leads with Email & WhatsApp

Turn Google Maps into a **ready-to-use lead list**. This scraper extracts every business from any
search and location, then visits each business website to pull **email addresses and social profiles**
— the data that actually closes sales.

### ✅ What you get for every business

- **Name, category, rating, number of reviews**
- **Full address** and Google Maps URL
- **Phone number**
- **Website**
- 💎 **Email** (scraped from the business site — homepage + contact page)
- 💎 **Instagram, Facebook, WhatsApp, LinkedIn**

### 🎯 Perfect for

- **Lead generation** and cold outreach (email/WhatsApp campaigns)
- **B2B sales** — build targeted prospect lists by niche + city
- **Market research** — map competitors, ratings and density in any area
- **Agencies** selling local marketing services

### ⚙️ How to use (no coding)

1. Enter a search like `dentists in Miami` — or a term (`restaurants`) + a location (`São Paulo`).
2. Set how many results you want (`maxItems`) and your language.
3. Keep **Extract emails & socials** on for premium leads.
4. Run. Export to **CSV, Excel, JSON, or pull via API**.

#### Example input

```json
{
  "searchStrings": ["dentists in Miami"],
  "maxItems": 100,
  "language": "en",
  "enrichEmails": true
}
```

#### Example output (per business)

```json
{
  "name": "Bright Smile Dental",
  "category": "Dentist",
  "rating": 4.8,
  "reviews": 312,
  "phone": "+1 305-555-0142",
  "email": "contact@brightsmile.com",
  "website": "https://brightsmile.com",
  "instagram": "https://instagram.com/brightsmiledental",
  "whatsapp": "https://wa.me/13055550142",
  "address": "123 Ocean Dr, Miami, FL",
  "url": "https://www.google.com/maps/place/..."
}
```

### 💡 Why this scraper

- **Emails + WhatsApp included** — most Google Maps scrapers stop at phone. This one gets the contacts
  that convert.
- **Fast & affordable** — no browser bloat for the enrichment step.
- **Structured, deduplicated output** ready for your CRM or outreach tool.

### 🔌 Integrations

Export or push results to Google Sheets, CRMs, Make/Zapier, or your own app via the **Apify API**.

### Notes

- Use the built-in Apify Proxy for reliable results.
- Respect local laws and platform terms when contacting leads (e.g. GDPR/LGPD, CAN-SPAM).

*Built by forge-of-leads — tools that turn public data into pipelines.*

# Actor input Schema

## `searchStrings` (type: `array`):

Buscas prontas, ex.: "dentists in Miami". Cada item é uma busca.

## `searchTerm` (type: `string`):

Tipo de negócio, ex.: "restaurants". Combine com Localização.

## `location` (type: `string`):

Cidade/região, ex.: "São Paulo".

## `maxItems` (type: `integer`):

Limite total de negócios extraídos.

## `language` (type: `string`):

Código de idioma da interface do Google, ex.: en, pt-BR, es.

## `enrichEmails` (type: `boolean`):

Abre o site de cada negócio e extrai e-mail, Instagram, Facebook, WhatsApp e LinkedIn. Deixa o lead muito mais valioso.

## `maxEmailPages` (type: `integer`):

Quantas páginas do site abrir (home + contato) atrás de e-mail.

## `proxyConfiguration` (type: `object`):

Use o Apify Proxy (recomendado). Datacenter costuma bastar para o Google Maps.

## Actor input object example

```json
{
  "searchStrings": [
    "coffee shops in New York"
  ],
  "maxItems": 50,
  "language": "en",
  "enrichEmails": true,
  "maxEmailPages": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "searchStrings": [
        "coffee shops in New York"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("forge-of-leads/google-maps-scraper").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 = {
    "searchStrings": ["coffee shops in New York"],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("forge-of-leads/google-maps-scraper").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 '{
  "searchStrings": [
    "coffee shops in New York"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call forge-of-leads/google-maps-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/JOwq4L4PU204FMhMJ/builds/0F4NxF7KBQyOoMTlA/openapi.json
