# Google Maps Coffee Shop Data Extractor

**Use case:** 

Extract business information including emails and social media links for coffee shops in Burlington, VT. Get key details effortlessly.

## Input

```json
{
  "searchStringsArray": [
    "coffee shop"
  ],
  "locationQuery": "Burlington, VT, USA",
  "maxCrawledPlacesPerSearch": 8,
  "language": "en",
  "scrapeContacts": false,
  "scrapePlaceDetailPage": false,
  "scrapeSocialMediaProfiles": {
    "facebooks": true,
    "instagrams": true,
    "youtubes": true,
    "tiktoks": true,
    "twitters": true,
    "linkedins": true
  },
  "maxReviews": 0,
  "reviewsSort": "newest",
  "maxImages": 0,
  "placeMinimumStars": "",
  "skipClosedPlaces": true,
  "website": "allPlaces",
  "geo_split": false,
  "geo_split_max_cells": 100,
  "cache_provider": "memory",
  "cache_ttl_seconds": 86400,
  "max_requests_per_minute": 60,
  "max_concurrency": 1,
  "transport": "auto",
  "strategy_mode": "cost_first",
  "request_delay": 0,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "place_id": {
    "label": "Place ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "email_type": {
    "label": "Email type"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "hours": {
    "label": "Hours"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "google_maps_url": {
    "label": "Maps URL",
    "format": "link"
  },
  "social_links": {
    "label": "Social links"
  },
  "reviews": {
    "label": "Reviews"
  },
  "images": {
    "label": "Images"
  },
  "neighborhood": {
    "label": "Neighborhood"
  },
  "timezone": {
    "label": "Timezone"
  },
  "country_code": {
    "label": "Country code"
  },
  "business_photo": {
    "label": "Business photo"
  },
  "open_status": {
    "label": "Open status"
  },
  "price_level": {
    "label": "Price level"
  },
  "popular_times": {
    "label": "Popular times"
  },
  "scraped_at": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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