# Restaurant Data Extractor for Google Maps

**Use case:** 

Extract detailed restaurant information from Google Maps in New York. Get names, addresses, phone numbers, ratings, and opening hours.

## Input

```json
{
  "searchQuery": "restaurants in New York",
  "maxResults": 20,
  "geoGrid": "auto",
  "language": "en",
  "region": "us",
  "debugMode": false
}
```

## Output

```json
{
  "name": {
    "label": "Business Name",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "text"
  },
  "longitude": {
    "label": "Longitude",
    "format": "text"
  },
  "google_maps_url": {
    "label": "Maps URL",
    "format": "link"
  }
}
```

## About this Actor

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