Marketplace
No threads yet
Live

search_providers_by_specialty_and_location

zocdoc.com

Searches https://zocdoc.com by specialty slug and location, returning 10 relevance-ranked providers per offset with profiles, insurance, offices, reviews and availability.

Parameters3
Runs11
Updated3d ago
Degraded11 runs · 81.8% 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_providers_by_specialty_and_location?

Searches https://zocdoc.com by specialty slug and location, returning 10 relevance-ranked providers per offset with profiles, insurance, offices, reviews and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass specialty_slug, location, offset and get the result back without maintaining a scraper.

Response

{
  "live": true,
  "offset": 0,
  "has_more": true,
  "location": "<string>",
  "page_size": 0,
  "providers": [
    {}
  ],
  "total_count": 0,
  "specialty_id": "<string>",
  "specialty_name": "<string>",
  "specialty_slug": "<string>",
  "resolved_location": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/af2a19de-5c8d-4317-ae1f-7f8949800a96/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "af2a19de-5c8d-4317-ae1f-7f8949800a96",
    "variables": {
        "specialty_slug": "primary-care-doctors",
        "location": "New York, NY",
        "offset": 0
    }
}'

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="af2a19de-5c8d-4317-ae1f-7f8949800a96") — the "search_providers_by_specialty_and_location" function, which searches https://zocdoc.com by specialty slug and location, returning 10 relevance-ranked providers per offset with profiles, insurance, offices, reviews and availability..

It takes specialty_slug (str), location (str), offset (int). Return the result as structured JSON.