# Extract phone numbers from Google Maps by zip code

**Use case:** 

Scrape phone numbers from Google Maps for any zip code search. Each place returns name, phone, address, rating, reviews, and website as JSON.

## Input

```json
{
  "searchTerms": [
    "dentists in 33139"
  ],
  "maxResultsPerSearch": 50
}
```

## Output

```json
{
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "title": {
    "label": "Name",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Review Count",
    "format": "integer"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "phoneNumber": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Places Scraper - Fast & Cheap Bulk Places](https://apify.com/johnvc/google-maps-places-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-maps-places-api) to learn more, explore other use cases, and run it yourself.