# Coffee Shops in London - Google Maps

**Use case:** 

Find coffee shops in London from Google Maps with names, categories, ratings, reviews, addresses, websites, hours, and Maps URLs.

## Input

```json
{
  "keywords": [
    "coffee shop"
  ],
  "locations": [
    "London, UK"
  ],
  "locationPreset": "none",
  "maxResults": 5,
  "language": "en",
  "countryCode": "gb",
  "maxCrawledPlacesPerQuery": 5,
  "skipClosedBusinesses": true,
  "scrapeDetails": false,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Business Name",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "hours": {
    "label": "Opening Hours",
    "format": "array"
  },
  "url": {
    "label": "Google Maps URL",
    "format": "string"
  },
  "keyword": {
    "label": "Search Keyword",
    "format": "string"
  },
  "location": {
    "label": "Search Location",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

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