# Real Estate Agent Leads from Google Maps

**Use case:** 

Build a real estate agent lead list from Google Maps: name, address, phone, website, rating and emails crawled from each site, with a 0-100 lead score.

## Input

```json
{
  "searchQueries": [
    "real estate agents"
  ],
  "locationQuery": "Miami, FL",
  "maxPlacesPerSearch": 120,
  "maxResults": 1000,
  "enrichContacts": true,
  "scrapePlaceDetails": false,
  "detailConcurrency": 4,
  "minRating": "",
  "websiteFilter": "all",
  "skipClosedPlaces": false,
  "withPhoneOnly": false,
  "withEmailOnly": true,
  "language": "en",
  "countryCode": "us",
  "sortBy": "leadScore",
  "includeRawFields": false,
  "monitorMode": false,
  "monitorKey": "default",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Name",
    "format": "text"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "totalScore": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "url": {
    "label": "Maps URL",
    "format": "link"
  }
}
```

## About this Actor

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