# Extract coffee shop social media profiles from Google Maps

**Use case:** 

Collect Instagram, Facebook, TikTok and more from coffee shop listings in any city. Works for any niche, restaurant, salon, boutique, ... Just fill the keyword.

## Input

```json
{
  "keywords": [
    "coffee shops",
    "coffee"
  ],
  "keyword": "restaurants",
  "location": "Brooklyn, NY",
  "maxResults": 100,
  "minRating": 0,
  "minReviews": 0,
  "minPrice": 0,
  "maxPrice": 0,
  "filterTemporarilyClosed": false,
  "filterPermanentlyClosed": false,
  "extractContactDetails": false,
  "extractAmenities": false,
  "extractBusyness": false,
  "extractPriceDistribution": false,
  "extractAtmosphere": false,
  "extractPhotos": false,
  "maxPhotos": 10,
  "extractSocialMedia": true,
  "calculateLeadScore": false,
  "extractReviews": false,
  "maxReviewsPerBusiness": 100,
  "extractGeographic": false,
  "extractCountry": true,
  "extractTravel": false,
  "extractWebsiteEmails": false,
  "maxEmails": 5,
  "extractSocialMediaFromWebsite": true,
  "socialMediaPlatforms": [
    "facebook",
    "instagram",
    "twitter",
    "linkedin",
    "tiktok",
    "youtube"
  ],
  "websiteTimeout": 5000,
  "websiteMaxPages": 5,
  "concurrency": 2,
  "detailsConcurrency": 10,
  "webhookBatchSize": 25,
  "exportToCsv": true
}
```

## Output

```json
{
  "businessName": {
    "label": "Business Name",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  }
}
```

## About this Actor

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