Marketplace
No threads yet
Live

list_reservation_availability

opentable.com

Checks specific restaurants on https://www.opentable.com for reservation openings by date, time, and party size. Returns slot availability, reward points, hashes, and optional name resolution.

Parameters7
Runs9
Updated4d ago
Failing9 runs · 77.7% 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 list_reservation_availability?

Checks specific restaurants on https://www.opentable.com for reservation openings by date, time, and party size. Returns slot availability, reward points, hashes, and optional name resolution. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass restaurant_ids, restaurant_name, location, date, time, party_size, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "time": "<string>",
  "source": "<string>",
  "party_size": 0,
  "resolution": {},
  "restaurants": [
    {}
  ],
  "restaurant_count": 0,
  "available_slot_count": 0,
  "missing_restaurant_ids": [
    0
  ],
  "unavailable_slot_count": 0,
  "requested_restaurant_ids": [
    0
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/adbd521d-2311-426b-9752-c45af0ef83fd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "adbd521d-2311-426b-9752-c45af0ef83fd",
    "variables": {
        "restaurant_ids": null,
        "restaurant_name": "Carmine'\''s - 44th Street - NYC",
        "location": "New York, NY",
        "date": "",
        "time": "19:00",
        "party_size": 2,
        "timeout_seconds": 30
    }
}'

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="adbd521d-2311-426b-9752-c45af0ef83fd") — the "list_reservation_availability" function, which checks specific restaurants on https://www.opentable.com for reservation openings by date, time, and party size. Returns slot availability, reward points, hashes, and optional name resolution..

It takes restaurant_ids (list[int] | None), restaurant_name (str), location (str), date (str), time (str), party_size (int), timeout_seconds (int). Return the result as structured JSON.