# Try a Restaurant Menu API on Yelp Data Free

**Use case:** 

Start on the free tier and pull a restaurant's full Yelp menu: sections, dishes, descriptions, and prices, from a business URL or place ID.

## Input

```json
{
  "place_ids": [
    "maman-new-york-22"
  ],
  "full_menu": true,
  "business_alert": false,
  "yelp_domain": "www.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.