# Extract a Restaurant Menu from Google Maps — Live Example

**Use case:** 

Ready-made example: scrape Katz's Delicatessen menu photos from Google Maps into structured dishes with prices, allergens and nutrition. No API key.

## Input

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

## 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 — Allergens, Nutrition, No API Key](https://apify.com/nomad-agent/google-maps-menu-scraper-managed) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/google-maps-menu-scraper-managed) to learn more, explore other use cases, and run it yourself.