# Find New Restaurants Opening in Your City

**Use case:** 

Watch restaurants and coffee shops on Google Maps in one city and get only the new listings, with address, phone, website and review count for outreach.

## Input

```json
{
  "searchTerms": [
    "restaurant",
    "coffee shop"
  ],
  "location": "Lyon, France",
  "maxPlacesPerSearch": 100,
  "language": "fr",
  "includeBaselineInOutput": true,
  "maxReviewsForNew": 15
}
```

## Output

```json
{
  "name": {
    "label": "Business name",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "googleMapsUrl": {
    "label": "Google Maps URL",
    "format": "string"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "firstDetectedAt": {
    "label": "First detected at",
    "format": "string"
  },
  "isNewSinceLastRun": {
    "label": "New since last run",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps New Business Monitor — Local Leads](https://apify.com/davidbenittah/google-maps-new-business-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/davidbenittah/google-maps-new-business-monitor) to learn more, explore other use cases, and run it yourself.