Marketplace
No threads yet
Live

search_opentable_restaurants

opentable.ca

Searches https://opentable.ca by location, keyword, date, time, and party size. Returns the first page of restaurant listings with complete descriptive details, coordinates, photos, profile slugs, and restaurant IDs.

Parameters5
Runs31
Updated10d ago
Degraded31 runs · 22.5% 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 search_opentable_restaurants?

Searches https://opentable.ca by location, keyword, date, time, and party size. Returns the first page of restaurant listings with complete descriptive details, coordinates, photos, profile slugs, and restaurant IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass location, keyword, date, time, party_size and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "page": 0,
  "time": "<string>",
  "source": "<string>",
  "keyword": "<string>",
  "page_size": 0,
  "party_size": 0,
  "restaurants": [
    {}
  ],
  "total_count": 0,
  "resolved_location": {},
  "requested_location": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ba4a4e53-4127-4224-b523-df3df70fa934/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ba4a4e53-4127-4224-b523-df3df70fa934",
    "variables": {
        "location": "Toronto",
        "keyword": "sushi",
        "date": "",
        "time": "19:00",
        "party_size": 2
    }
}'

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="ba4a4e53-4127-4224-b523-df3df70fa934") — the "search_opentable_restaurants" function, which searches https://opentable.ca by location, keyword, date, time, and party size. Returns the first page of restaurant listings with complete descriptive details, coordinates, photos, profile slugs, and restaurant IDs..

It takes location (str), keyword (str), date (str), time (str), party_size (int). Return the result as structured JSON.