# Google Maps Scraper — Local Business Leads & Emails

**Use case:** 

Scrape local business leads from Google Maps by search query: name, phone, email, address, and website. Export to JSON or CSV for sales outreach.

## Input

```json
{
  "searchQueries": [
    "dentists in Miami FL"
  ],
  "maxItems": 10,
  "extractEmails": true,
  "extractSocialMedia": false,
  "verifyEmailMx": true,
  "firecrawlFallback": true,
  "parseOpeningHours": true,
  "includeQualityScore": true,
  "solveCaptcha": true,
  "language": "en",
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Business",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "emailVerified": {
    "label": "Email✓ (MX)",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "qualityScore": {
    "label": "Quality",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Scraper API - Local Leads & Emails](https://apify.com/tugelbay/google-maps-leads) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tugelbay/google-maps-leads) to learn more, explore other use cases, and run it yourself.