# Extract restaurant menu prices from Google Maps

**Use case:** 

Pull structured menu items, prices, categories, and descriptions from Google Maps restaurant listings. Ready-to-run task for food delivery research.

## Input

```json
{
  "placeIds": [
    "ChIJX93FuGqFqkAR2ot0XoGUlKE"
  ],
  "maxMenuImages": 1,
  "maxPlacesPerQuery": 5,
  "maxItems": 100,
  "menuLanguage": "en"
}
```

## Output

```json
{
  "placeName": {
    "label": "Place name"
  },
  "category": {
    "label": "Category"
  },
  "name": {
    "label": "Name"
  },
  "description": {
    "label": "Description"
  },
  "language": {
    "label": "Language"
  },
  "price": {
    "label": "Price"
  },
  "priceText": {
    "label": "Price text"
  },
  "placeUrl": {
    "label": "Place url"
  }
}
```

## About this Actor

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