# Find HVAC contractors in Phoenix with 20+ Google reviews

**Use case:** 

Builds a lead list of established HVAC and air conditioning companies in Phoenix from Google Maps, keeping only businesses with 20 or more reviews. Each row has the business name, category, rating, review count, phone, website, address and map link. Swap the terms and location to build the same list for any trade in any city.

## Input

```json
{
  "searchTerms": [
    "HVAC contractor",
    "air conditioning repair"
  ],
  "locations": [
    "Phoenix, AZ"
  ],
  "maxResultsPerQuery": 60,
  "minReviews": 20,
  "requireWebsite": false,
  "dedupeScope": "run",
  "language": "en",
  "country": "us",
  "maxResults": 0
}
```

## Output

```json
{
  "name": {
    "label": "Business",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews": {
    "label": "Reviews",
    "format": "number"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city_state": {
    "label": "City / State",
    "format": "text"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lng": {
    "label": "Longitude",
    "format": "number"
  },
  "placeId": {
    "label": "Place ID",
    "format": "text"
  },
  "mapsUrl": {
    "label": "Google Maps",
    "format": "link"
  },
  "searchQuery": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/leadproof/google-maps-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
