# Scrape Gyms Across Multiple Cities

**Use case:** 

Scrape gyms and fitness studios across multiple cities from Google Maps with ratings, phone and website. Export to CSV, JSON or Excel.

## Input

```json
{
  "searchStringsArray": [
    "gyms in Houston",
    "gyms in Dallas",
    "gyms in San Antonio"
  ],
  "maxCrawledPlacesPerSearch": 200,
  "language": "en",
  "countryCode": "us",
  "enableGridSearch": false,
  "gridCellKm": 5,
  "maxPagesPerCell": 5,
  "proxyConfig": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Business Name",
    "format": "text"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "totalScore": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  }
}
```

## About this Actor

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