# Monitor OpenTable reviews for a list of restaurants

**Use case:** 

Track recent reviews from OpenTable for specific restaurants. Receive structured data on ratings, review content, and diner profiles.

## Input

```json
{
  "restaurantId": "r/central-park-boathouse-new-york-2",
  "restaurantIds": [
    "r/tao-uptown-new-york",
    "r/don-angie-new-york",
    "r/central-park-boathouse-new-york-2"
  ],
  "maxResultsPerRestaurant": 20,
  "includeRestaurantSummary": false
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "restaurant_id": {
    "label": "Restaurant ID",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "rating": {
    "label": "Rating",
    "format": "object"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "dined_at": {
    "label": "Dined At",
    "format": "string"
  },
  "user": {
    "label": "User",
    "format": "object"
  }
}
```

## About this Actor

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