Marketplace
No threads yet
Live

get_provider_appointment_slots

api.zocdoc.com

Returns 90 days of bookable new- or established-patient appointment slots for a Zocdoc provider from https://zocdoc.com, with provider details and office locations.

Parameters3
Runs6
Updated3d ago
Operational6 runs · 100% 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_provider_appointment_slots?

Returns 90 days of bookable new- or established-patient appointment slots for a Zocdoc provider from https://zocdoc.com, with provider details and office locations. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass provider_id, patient_type, procedure_id and get the result back without maintaining a scraper.

Response

{
  "slots": [
    {}
  ],
  "end_date": "<string>",
  "provider": {},
  "slot_count": 0,
  "start_date": "<string>",
  "window_days": 0,
  "patient_type": "<string>",
  "procedure_id": "<string>",
  "windows_fetched": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d17c493a-dd0e-4919-9f10-0211cc3e56f5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d17c493a-dd0e-4919-9f10-0211cc3e56f5",
    "variables": {
        "provider_id": "pr_YHcC6-8rGk6BmhJ8IvXwUx",
        "patient_type": "new",
        "procedure_id": ""
    }
}'

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="d17c493a-dd0e-4919-9f10-0211cc3e56f5") — the "get_provider_appointment_slots" function, which returns 90 days of bookable new- or established-patient appointment slots for a Zocdoc provider from https://zocdoc.com, with provider details and office locations..

It takes provider_id (str), patient_type (str), procedure_id (str). Return the result as structured JSON.