# Extract a Restaurant's Full Menu from Yelp

**Use case:** 

Pull a restaurant's full Yelp menu by place ID: menu sections, dish names, descriptions, and price variations returned as clean JSON.

## Input

```json
{
  "place_ids": [
    "maman-new-york-22"
  ],
  "full_menu": true,
  "business_alert": false,
  "yelp_domain": "yelp.com"
}
```

## Output

```json
{
  "place_id": {
    "label": "Place ID",
    "format": "text"
  },
  "menu_requested": {
    "label": "Menu requested",
    "format": "boolean"
  },
  "menu_returned": {
    "label": "Menu returned",
    "format": "boolean"
  },
  "full_menu_results": {
    "label": "Full menu",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Yelp Business Details API](https://apify.com/johnvc/yelp-place-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/yelp-place-api) to learn more, explore other use cases, and run it yourself.