# Get a list of dentists in Miami with phone and website

**Use case:** 

Pulls dental practices in Miami from Google Maps, keeping only businesses with at least 10 reviews and a website. One row per business: name, category, rating, review count, phone, website, address and coordinates, ready to import into a CRM or spreadsheet. Change the search terms and city to target any local business type.

## Input

```json
{
  "searchTerms": [
    "dentist",
    "dental clinic"
  ],
  "locations": [
    "Miami, FL"
  ],
  "maxResultsPerQuery": 40,
  "minReviews": 10,
  "requireWebsite": true,
  "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`).
