# 获取餐厅菜品照片和店内实拍图

**Use case:** 

获取任意餐厅的菜品照片和店内实拍图，返回原图链接、缩略图、图库位置和稳定的图片 ID，支持按类别筛选。

## Input

```json
{
  "searchTerm": "restaurants in Shanghai",
  "maxPlacesPerSearch": 3,
  "maxPhotosPerPlace": 20,
  "photoCategory": "food_and_drink",
  "hl": "zh-CN"
}
```

## 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.