# Google Maps Travel List Research

**Use case:** 

Turn Google Maps travel, venue, or prospect lists into structured datasets for route planning, market research, and CRM enrichment.

## Input

```json
{
  "listUrls": [
    {
      "url": "https://maps.app.goo.gl/MMjvFNWpUTjiupHc9"
    }
  ],
  "maxPlacesPerList": 100,
  "includeDetails": false,
  "includeWebsiteEmails": false,
  "maxEmailsPerPlace": 3,
  "language": "en",
  "countryCode": "us"
}
```

## Output

```json
{
  "listTitle": {
    "label": "List title",
    "format": "text"
  },
  "listId": {
    "label": "List ID",
    "format": "text"
  },
  "placeName": {
    "label": "Place name",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "note": {
    "label": "List note",
    "format": "text"
  },
  "placeUrl": {
    "label": "Place URL",
    "format": "link"
  },
  "placeId": {
    "label": "Place ID",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "openingHours": {
    "label": "Opening hours",
    "format": "array"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "listUrl": {
    "label": "Input list URL",
    "format": "link"
  },
  "resolvedListUrl": {
    "label": "Resolved list URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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