# OpenTable Restaurant Data Extractor

**Use case:** 

Extract detailed restaurant information from OpenTable in Montreal. Get data on menus, reviews, ratings, and location specifics.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.opentable.com/s?dateTime=2026-07-25T19%3A00%3A00&covers=2&latitude=45.5413685&longitude=-73.5665545&term=montreal&shouldUseLatLongSearch=false&originCorrelationId=d5c88a4d-5be2-4bd8-8162-42693af7afd1&corrid=b773837a-6908-4267-9eec-47e488018c5f&metroId=75&originalTerm=montreal&queryUnderstandingType=default&showMap=true&sortBy=web_conversion"
    }
  ],
  "results_wanted": 300,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "restaurantId": {
    "label": "ID",
    "format": "number"
  },
  "name": {
    "label": "Restaurant",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "cuisine": {
    "label": "Cuisine",
    "format": "text"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "recentReservationCount": {
    "label": "Recent Reservations",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phoneNumber": {
    "label": "Phone",
    "format": "text"
  },
  "profileImage": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenTable Scraper](https://apify.com/shahidirfan/opentable-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/opentable-scraper) to learn more, explore other use cases, and run it yourself.