get_restaurant_details
opentable.caReturns a complete OpenTable restaurant profile from https://opentable.ca by slug, including reviews, photos, menus, editorial lists, private dining, and live availability.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_restaurant_details?
Returns a complete OpenTable restaurant profile from https://opentable.ca by slug, including reviews, photos, menus, editorial lists, private dining, and live availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug, date, time, party_size, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"query": {},
"source": "<string>",
"profile": {},
"availability": {},
"canonical_url": "<string>",
"restaurant_id": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/01512fb3-014a-4b21-b1da-5b98c05135db/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "01512fb3-014a-4b21-b1da-5b98c05135db",
"variables": {
"slug": "general-public-toronto",
"date": "",
"time": "19:00",
"party_size": 2,
"timeout_seconds": 40
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="01512fb3-014a-4b21-b1da-5b98c05135db") — the "get_restaurant_details" function, which returns a complete OpenTable restaurant profile from https://opentable.ca by slug, including reviews, photos, menus, editorial lists, private dining, and live availability.. It takes slug (str), date (str), time (str), party_size (int), timeout_seconds (int). Return the result as structured JSON.