# Export Google Maps Places to CSV

**Use case:** 

Search Google Maps and download the places as a CSV: name, address, rating, phone, website, and coordinates. Exports to Excel and Sheets too.

## Input

```json
{
  "searchTerms": [
    "coffee shops in Austin, TX"
  ],
  "maxResultsPerSearch": 20
}
```

## 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.