# Find dentists in Chicago on Google Maps

**Use case:** 

Collects the Google Maps local results for dentist searches in Chicago: business name, rating, review count, address, phone, category, website and coordinates, in Google's own ranking order. Use it for local SEO audits, map-pack rank checks or building a local lead list, and change the query to any business type and city.

## Input

```json
{
  "queries": [
    "dentist chicago",
    "emergency dentist chicago"
  ],
  "engine": "google_maps",
  "resultsDepth": 20,
  "locationCode": "2840",
  "languageCode": "en",
  "device": "desktop"
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "rank_absolute": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Business",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Reviews",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "url": {
    "label": "Website",
    "format": "link"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [DataForSEO SERP API - Google Organic, Maps & News Results](https://apify.com/santhej/dataforseo-serp-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/santhej/dataforseo-serp-api.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/santhej/dataforseo-serp-api.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`).
