Live
get_practice_availability
api.zocdoc.comReturns the next 90 days of bookable slots for a practice on https://zocdoc.com, with practice details and deduplicated providers that have availability.
Parameters2
Runs11
Updated3d ago
Degraded11 runs · 90.9% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_practice_availability?
Returns the next 90 days of bookable slots for a practice on https://zocdoc.com, with practice details and deduplicated providers that have availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug, practice_name and get the result back without maintaining a scraper.
Response
{
"slots": [
{}
],
"end_date": "<string>",
"practice": {},
"providers": [
{}
],
"source_url": "<string>",
"start_date": "<string>",
"window_days": 0,
"resolved_slug": "<string>",
"windows_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ceee7375-4611-41e8-9c42-1e05c0ad78b9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ceee7375-4611-41e8-9c42-1e05c0ad78b9",
"variables": {
"slug": "soho-health-ny-3201",
"practice_name": ""
}
}'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="ceee7375-4611-41e8-9c42-1e05c0ad78b9") — the "get_practice_availability" function, which returns the next 90 days of bookable slots for a practice on https://zocdoc.com, with practice details and deduplicated providers that have availability.. It takes slug (str), practice_name (str). Return the result as structured JSON.