# Get Restaurant Reviews by API From a Yelp URL

**Use case:** 

Fetch a restaurant's Yelp reviews as JSON: rating, full text, date, reviewer stats, photos, and owner replies. Sort by date or rating and paginate.

## Input

```json
{
  "place_id": "https://www.yelp.com/biz/maman-new-york-22",
  "sort_by": "date_desc",
  "not_recommended": false,
  "yelp_domain": "www.yelp.com",
  "max_pages": 1
}
```

## Output

```json
{
  "page_number": {
    "label": "Page",
    "format": "number"
  },
  "reviews": {
    "label": "Reviews"
  }
}
```

## About this Actor

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