Marketplace
No threads yet
Live

search_providers_by_zip

api.zocdoc.com

Searches the provider directory on https://zocdoc.com by ZIP code within 10 miles, returning paginated detailed providers, NPIs, bios, locations, and availability flags.

Parameters2
Runs8
Updated3d ago
Degraded8 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 search_providers_by_zip?

Searches the provider directory on https://zocdoc.com by ZIP code within 10 miles, returning paginated detailed providers, NPIs, bios, locations, and availability flags. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass zip_code, offset and get the result back without maintaining a scraper.

Response

{
  "offset": 0,
  "has_more": true,
  "zip_code": "<string>",
  "page_size": 0,
  "providers": [
    {}
  ],
  "total_count": 0,
  "radius_miles": 0,
  "resolved_location": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d4821a6a-5173-482f-9a95-2c4a7457b4b4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d4821a6a-5173-482f-9a95-2c4a7457b4b4",
    "variables": {
        "zip_code": "10001",
        "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="d4821a6a-5173-482f-9a95-2c4a7457b4b4") — the "search_providers_by_zip" function, which searches the provider directory on https://zocdoc.com by ZIP code within 10 miles, returning paginated detailed providers, NPIs, bios, locations, and availability flags..

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