# Scrape a Google Maps Menu with Your Gemini Key — Example

**Use case:** 

Live example: turn Katz's Delicatessen's Google Maps menu photos into structured dishes with prices and allergens. Bring your own free Gemini key.

## Input

```json
{
  "placeUrls": [
    "Katz's Delicatessen New York"
  ],
  "geminiModel": "gemini-2.5-flash",
  "language": "en",
  "maxMenuPhotos": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Dish name",
    "format": "string"
  },
  "originalName": {
    "label": "Original name",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "dietaryType": {
    "label": "Dietary type",
    "format": "string"
  },
  "allergens": {
    "label": "Allergens",
    "format": "string"
  },
  "place": {
    "label": "Place",
    "format": "string"
  }
}
```

## About this Actor

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