# Get Owner-Uploaded Photos for a Business

**Use case:** 

Filter a place gallery to just the photos its owner posted, separating brand imagery from customer snapshots. Returns URL, thumbnail and position.

## Input

```json
{
  "searchTerm": "Mozart's Coffee Roasters, Austin TX",
  "maxPlacesPerSearch": 1,
  "maxPhotosPerPlace": 20,
  "photoCategory": "by_owner",
  "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.