# Photos for Every Business in a Neighborhood

**Use case:** 

Search a category and city, then pull the photo gallery for each match. One run returns image URLs, thumbnails and place names across many businesses.

## Input

```json
{
  "searchTerm": "coffee shops in Austin, TX",
  "maxPlacesPerSearch": 5,
  "maxPhotosPerPlace": 20,
  "photoCategory": "all",
  "hl": "en"
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "place_title": {
    "label": "Place Title",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "image": {
    "label": "Image URL",
    "format": "string"
  },
  "category_id": {
    "label": "Category ID",
    "format": "string"
  },
  "data_id": {
    "label": "Place ID",
    "format": "string"
  },
  "photo_id": {
    "label": "Photo ID",
    "format": "string"
  }
}
```

## About this Actor

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