# Bulk Download Every Photo for a List of Places

**Use case:** 

Give a list of places and get every gallery photo for each: full-size URL, thumbnail, position and a stable photo ID you can de-duplicate on.

## Input

```json
{
  "searchTerm": "Mozart's Coffee Roasters, Austin TX",
  "maxPlacesPerSearch": 3,
  "dataIds": [
    "0x8644b5554461664d:0xbc4ff333ec9ad1ad",
    "0x8644ca6bc309e81b:0x1f1a903bbb66839"
  ],
  "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.