OpenTable Scraper avatar

OpenTable Scraper

Pricing

from $1.70 / 1,000 restaurants

Go to Apify Store
OpenTable Scraper

OpenTable Scraper

Scrape OpenTable restaurants by search query (with date/time/party size) or start URLs. Optional listing details and full restaurant reviews.

Pricing

from $1.70 / 1,000 restaurants

Rating

0.0

(0)

Developer

Farhan Ali

Farhan Ali

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

OpenTable Scraper creates a structured dataset of restaurant records collected from opentable.com. Each dataset item can include the restaurant name, cuisine, price band, rating, review count, neighborhood, address, coordinates, and contact details, plus full profile fields and reviews when enrichment is enabled. Query the source using search URLs, restaurant profile URLs, or search terms, control the result limit with maxItems, and retrieve records through the Apify Dataset API or export them as JSON, CSV, Excel, or XML.

Dataset at a glance

PropertyValue
Sourceopentable.com
Record unitOne restaurant
Input methodsSearch result URLs, restaurant profile URLs, or search queries
Main identifiersrestaurantId, url
DeliveryApify Dataset and API
Export formatsJSON, CSV, Excel, XML
Update modelFresh records per Actor run
PricingPay per event — from $2 per 1,000 restaurants; details and reviews cost extra when enabled

Coverage and available records

  • Supported inputs — OpenTable search result URLs (https://www.opentable.com/s?...), restaurant profile URLs (https://www.opentable.com/r/...), or free-text search terms resolved through OpenTable autocomplete.
  • Search termssearchQueries accepts location or cuisine phrases such as Dresden, New York, or Italian in Berlin, and are used only when startUrls is empty.
  • Pagination — Search results are paginated until maxItems is reached or the listing is exhausted.
  • Detail enrichmentscrapeListingDetails opens each restaurant profile to collect hours, dress code, amenities, payment options, parking, public transit, chef, and photo galleries.
  • ReviewsscrapeReviews paginates each restaurant's review list, capped by maxReviews per restaurant.
  • Conditional fields — Details and reviews are only collected when enabled; otherwise detailsFetched and reviewsFetched are false and reviews is null.
  • Not currently collected — Menu items and live reservation availability beyond the requested date/time snapshot.

Data dictionary

Core fields present on every restaurant record:

FieldTypeNullableDescriptionExample
restaurantIdnumberNoStable OpenTable restaurant identifier; best deduplication key227388
namestringNoRestaurant namePeter Pane - Dresden
urlstringNoRestaurant profile URLhttps://www.opentable.com/r/...
cuisinestringYesCuisine typeBurgers
priceBandstringYesPrice category as shown on OpenTable€30 and under
currencySymbolstringYesCurrency symbol for the price band
ratingnumberYesAverage rating (0–5)4.5
reviewCountnumberYesTotal reviews shown on OpenTable515
neighborhoodstringYesNeighborhood nameOld Town
citystringYesCityDresden
statestringYesState or region codeSN
postCodestringYesPostal code01067
addressstringYesFull address lineWilsdruffer Straße 14-16, ...
latitude / longitudenumberYesGeographic coordinates51.0515654
phonestringYesPhone number0351 48676840
diningStylestringYesDining style categoryCasual Dining
hasTakeoutbooleanYesWhether takeout is offeredtrue
outdoorSeatingbooleanYesWhether outdoor seating is availablefalse
photoUrlstringYesPrimary photo URLhttps://resizer.otstatic.com/...
photosarrayYesAdditional photo URLs["https://...", "..."]
searchQuerystringYesSearch term that produced the recordDresden
detailsFetchedbooleanNoWhether detail enrichment ran for this restaurantfalse
reviewsFetchedbooleanNoWhether reviews were scraped for this restaurantfalse
reviewsarrayYesReview list; populated only when scrapeReviews is enablednull

When scrapeListingDetails is enabled, additional conditional fields are collected, including description, dressCode, hoursOfOperation, amenities, paymentOptions, parkingDetails, publicTransit, executiveChef, email, website, facebookUrl, orderOnlineLink, hasDelivery, and country.

Example dataset record

{
"restaurantId": 227388,
"name": "Peter Pane - Dresden",
"url": "https://www.opentable.com/r/peter-pane-dresden-am-zwinger-dresden",
"cuisine": "Burgers",
"priceBand": "€30 and under",
"currencySymbol": "€",
"rating": 4.5,
"reviewCount": 515,
"neighborhood": "Old Town",
"city": "Dresden",
"state": "SN",
"postCode": "01067",
"address": "Wilsdruffer Straße 14-16, Dresden, SN, 01067",
"latitude": 51.0515654,
"longitude": 13.7349184,
"phone": "0351 48676840",
"diningStyle": "Casual Dining",
"hasTakeout": true,
"outdoorSeating": false,
"photoUrl": "https://resizer.otstatic.com/v3/photos/92048640-2?width=320&height=320&webp=true",
"searchQuery": "Dresden",
"detailsFetched": false,
"reviewsFetched": false,
"reviews": null
}

This record was produced by a searchQueries run for Dresden with detail and review enrichment disabled.

Query and input reference

InputTypeRequiredDefaultAccepted valuesDescription
startUrlsarrayNoSearch URLs (/s?...) or profile URLs (/r/...)Takes priority over searchQueries
searchQueriesarrayNoLocation or cuisine phrasesUsed when startUrls is empty
datestringNotomorrowYYYY-MM-DDReservation date for availability search
timestringNo19:00HH:MM (24h)Preferred dining time
partySizeintegerNo2120Number of diners
scrapeListingDetailsbooleanNofalsetrue / falseEnable profile detail enrichment
scrapeReviewsbooleanNofalsetrue / falseEnable per-restaurant review pagination
maxReviewsintegerNo00 = allMax reviews per restaurant
maxItemsintegerNo00 = unlimitedMax restaurants to scrape
proxyConfigurationobjectNoResidentialApify proxy configResidential proxy recommended (Akamai Bot Manager)

Minimal request:

{ "searchQueries": ["Dresden"] }

Advanced request:

{
"searchQueries": ["Dresden"],
"date": "2026-08-20",
"time": "19:00",
"partySize": 2,
"scrapeListingDetails": true,
"scrapeReviews": true,
"maxReviews": 10,
"maxItems": 50,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}

Retrieve the data through the API

  1. Start the Actor with a JSON input via the Apify API or the Actor's API tab.
  2. Wait for the run to finish, or use the synchronous run endpoint.
  3. Retrieve items from the run's default dataset.
  4. Paginate or export the dataset in JSON, CSV, Excel, or XML.
from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("datascrapers/opentable-scraper").call(
run_input={"searchQueries": ["Dresden"], "maxItems": 50}
)
items = client.dataset(run["defaultDatasetId"]).list_items().items

Data quality and record handling

  • Completeness — Core identity and rating fields are present on listing records; description, hours, amenities, and photos are conditional on scrapeListingDetails.
  • Deduplication — Use restaurantId (preferred) or url as the stable external key. The Actor stops after maxItems restaurants.
  • Retries — Failed seeds are retried once with a fresh proxy session; OpenTable's Akamai Bot Manager frequently blocks datacenter IPs, so residential proxies are recommended.
  • Normalization — Coordinates, rating, and review counts are returned as numbers; availability signals reflect the requested date/time and are a point-in-time snapshot.
  • Raw vs derived — All fields are taken directly from OpenTable pages; no AI-generated or computed values are added.

Export and pipeline examples

DestinationRecommended methodTypical use
PostgreSQL/SupabaseDataset API or webhook consumerRestaurant master table keyed by restaurantId
Google SheetsApify integrationReview of listings and ratings per city
S3/cloud storageScheduled export or integrationNightly refresh of restaurant coverage

Pricing and cost examples

Billing is pay-per-event. Each event is tiered across Apify plans; prices below are the free-plan rates.

EventCharged whenFree-plan rate
dataset-item (Restaurant)A restaurant is pushed to the dataset$2 per 1,000
listing-details (Detailed Restaurant)scrapeListingDetails completes for a restaurant$3 per 1,000
restaurant-reviews (Reviews)scrapeReviews completes for a restaurant$2 per 1,000

A fixed one-time Actor Start charge of $0.00005 also applies to each run.

RestaurantsEstimated base cost (listings only)
1,000$2
10,000$20

Estimates depend on the pricing model and the options enabled. Enabling details or reviews adds the corresponding per-event cost.

Limitations and responsible data use

  • Only publicly accessible OpenTable data is collected; the Actor does not bypass login-restricted content.
  • Reservation availability is a snapshot at run time and changes frequently.
  • Some fields (hours, amenities, photos, reviews) are conditional and may be empty.
  • No historical snapshots are stored unless you persist them yourself across scheduled runs.
  • You are responsible for complying with OpenTable's terms and applicable privacy and data laws.

Dataset questions

What does one dataset item represent?

One restaurant listing. If scrapeListingDetails or scrapeReviews is enabled, the same item is enriched with profile details and/or a nested reviews array.

Which field should I use as a unique identifier?

restaurantId is the stable OpenTable identifier; url also works as a fallback.

Are fields nullable or conditional?

Yes. Enrichment fields (description, hoursOfOperation, amenities, email, etc.) are only present when scrapeListingDetails is on, and reviews is null unless scrapeReviews is on.

Can I retrieve the records as CSV or JSON?

Yes. The default dataset can be exported as JSON, CSV, Excel, or XML from the Apify Console or via the Dataset API.

How do I paginate large datasets?

The Actor paginates automatically up to maxItems. For very large exports, page through the dataset with the Dataset API offset and limit parameters.

What counts as a billable result?

Each restaurant pushed to the dataset is one dataset-item event. Detail enrichment and review extraction are billed separately as listing-details and restaurant-reviews events.

Data Scrapers support

Need an additional field, record type, or export workflow? Contact Data Scrapers at stardustspotlight@gmail.com. Include a sample source URL, required fields, expected record volume, and preferred delivery format.