# Google Maps Lead & Business Contact Extractor (`techsp13/google-maps-lead-extractor`) Actor

Extracts verified business names, phone numbers, websites, addresses, and review ratings from Google Maps places.

- **URL**: https://apify.com/techsp13/google-maps-lead-extractor.md
- **Developed by:** [Patel SanketKumar Arvindbhai](https://apify.com/techsp13) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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/actors/running/actors-in-store.md#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 Lead Scraper - B2B Business & Contact Extractor 🚀

The fastest, most reliable way to extract verified local business leads, contact phone numbers, websites, full addresses, and review ratings from Google Maps.

Export clean, deduplicated datasets directly to **CSV, Excel (.xlsx), or JSON** for your sales outreach and marketing campaigns.

***

### 🌟 Key Features

- **Global Reach:** Scrape any city, region, or country worldwide (USA, UK, Canada, Australia, Europe, India, etc.).
- **Rich Contact Attributes:** Business Name, Category/Niche, Direct Phone, Website Domain, Review Count, Star Rating, and Street Address.
- **Zero Proxy or Setup Needed:** Fully managed cloud infrastructure with automatic IP rotation.
- **Pay-Per-Result Pricing:** Only pay for verified records extracted ($2.00 per 1,000 results).
- **Free Trial Included:** Test with your first 50 results completely free.

***

### 💼 Ideal Use Cases

- **Cold Email & Sales Outreach:** Build targeted prospect lists for sales representatives and SDRs.
- **Marketing & SEO Agencies:** Find local business owners who need website redesigns, SEO, or local ads.
- **Real Estate & Contractors:** Source subcontractors, suppliers, roofers, plumbers, and real estate professionals.
- **Directory & Database Creators:** Populate custom niche business directories and aggregator websites.

***

### ⚙️ Input Parameters

| Parameter | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `searchQuery` | String | `"Roofing in Austin, TX"` | Any industry category and target city/location. |
| `maxResults` | Integer | `50` | Maximum number of leads to extract (1 to 5,000). |

***

### 📊 Sample Output Data

| Business Name | Category | Direct Phone | Website | Rating | Address |
| :--- | :--- | :--- | :--- | :--- | :--- |
| Austin Roofing & Construction | Roofing Contractor | (512) 629-4949 | https://austinroofingandconstruction.com | 4.9 ★ (320) | 2521 Rutland Dr #150, Austin, TX 78758 |
| Ja-Mar Roofing & Sheet Metal | Roofing Contractor | (512) 441-8437 | https://jamarroofing.com | 4.8 ★ (215) | 2000 Hydro Dr, Austin, TX 78728 |
| Longhorn Roofing | Roofing Contractor | (512) 478-2500 | https://longhornroofing.com | 4.9 ★ (480) | 11211 Taylor Draper Ln #100, Austin, TX 78759 |

***

### ❓ Frequently Asked Questions (FAQ)

##### How fast is the extraction?

The scraper processes and exports over 1,000 leads in under 60 seconds in the cloud.

##### Can I export to Excel or Google Sheets?

Yes! Click the **Export** button in your dataset tab to download as CSV, Excel, XML, or connect directly to Google Sheets via webhook/API.

##### Is proxy rotation included?

Yes, all requests run on Apify's enterprise cloud proxy network automatically.

# Actor input Schema

## `searchQuery` (type: `string`):

Category and city (e.g., 'Dentists in Miami, FL', 'Roofing in Austin, TX', 'Plumbers in London')

## `maxResults` (type: `integer`):

Maximum number of places/leads to extract

## Actor input object example

```json
{
  "searchQuery": "Dentists in Miami, FL",
  "maxResults": 50
}
```

# Actor output Schema

## `dataset` (type: `string`):

Dataset containing verified business contacts, phone numbers, websites, addresses, and review ratings.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("techsp13/google-maps-lead-extractor").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 = {}

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

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

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

```

## CLI example

```bash
echo '{}' |
apify call techsp13/google-maps-lead-extractor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,techsp13/google-maps-lead-extractor"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/effW9VfzxdtmO3G4B/builds/zru7V01IjTxGuco1C/openapi.json
