Marketplace
No threads yet
Live

get_restaurant_details

opentable.ca

Returns a complete OpenTable restaurant profile from https://opentable.ca by slug, including reviews, photos, menus, editorial lists, private dining, and live availability.

Parameters5
Runs7
Updated4d ago
Failing7 runs · 71.4% succeeded
30 days agotoday

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.

prompt
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.