Marketplace
No threads yet
Live

get_availability_slots

opentable.ca

Returns real-time restaurant time slots from https://opentable.ca with offsets, availability tokens, seating, experiences, dining areas, points, and availability details.

Parameters7
Runs8
Updated3d ago
Failing8 runs · 87.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 get_availability_slots?

Returns real-time restaurant time slots from https://opentable.ca with offsets, availability tokens, seating, experiences, dining areas, points, and availability details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass restaurant_ids, date, time, party_size, backward_minutes, forward_minutes, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "query": {},
  "source": "<string>",
  "restaurants": [
    {}
  ],
  "restaurant_count": 0,
  "available_slot_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/19ce0579-f58a-49be-b776-68532883bf31/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "19ce0579-f58a-49be-b776-68532883bf31",
    "variables": {
        "restaurant_ids": [1339783, 1434943],
        "date": "",
        "time": "19:00",
        "party_size": 2,
        "backward_minutes": 1140,
        "forward_minutes": 295,
        "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="19ce0579-f58a-49be-b776-68532883bf31") — the "get_availability_slots" function, which returns real-time restaurant time slots from https://opentable.ca with offsets, availability tokens, seating, experiences, dining areas, points, and availability details..

It takes restaurant_ids (list[int]), date (str), time (str), party_size (int), backward_minutes (int), forward_minutes (int), timeout_seconds (int). Return the result as structured JSON.