# Healthcare Provider Leads Scraper: NPI Contacts by Specialty (`scrapemint/healthcare-provider-leads`) Actor

US healthcare provider leads from the official NPI registry: search by specialty, state, city, or ZIP and get one row per provider with practice phone, address, license, and for organizations the decision maker's name, title, and phone. Keyless official API, no browser. Pay per provider.

- **URL**: https://apify.com/scrapemint/healthcare-provider-leads.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Lead generation, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Healthcare Provider Leads Scraper: NPI Contacts by Specialty

Build US healthcare provider lead lists from the official NPI registry (CMS NPPES), the public record every practicing provider and healthcare organization must be in. Search by specialty, state, city, or ZIP and get one JSON row per provider with the practice phone number, address, specialty taxonomy, and license, and for organizations the authorized official: the decision maker's name, title, and phone. Keyless official government API: no login, no browser, no per-seat directory subscription.

Built for dental and medical software vendors, device and supply reps, healthcare recruiters and staffing agencies, insurance and billing services, and local marketers selling to practices.

### What you get

One row per provider, with:

- `npi`, `providerType` (individual or organization), `name`, `credential`
- `specialty`, `taxonomyCode`, `licenseNumber`, `licenseState`
- `phone`, `fax`, `address1`, `address2`, `city`, `state`, `postalCode`
- `authorizedOfficialName`, `authorizedOfficialTitle`, `authorizedOfficialPhone` (organizations: the practice's decision maker)
- `status`, `enumerationDate`, `lastUpdated`, `profileUrl`

`enumerationDate` tells you how new the provider is: recently enumerated NPIs are new practices and new graduates, the leads with no incumbent vendors yet.

### Input

- `specialties` (matched against taxonomy descriptions, e.g. dentist, chiropractor, physical therapy, family medicine, pharmacy)
- `states` / `cities` / `postalCodes` (a trailing `*` on a ZIP matches the prefix, e.g. `787*` for all of Austin)
- `providerType` (both, individuals only, or organizations only — organizations carry the decision-maker fields)
- `maxProviders` (default 50, up to 2000)
- `dedupe` (skip previously returned NPIs; built for scheduled prospecting)

### Example input

```json
{
  "specialties": ["dentist"],
  "states": ["TX"],
  "providerType": "organization",
  "maxProviders": 200
}
````

### Example output

```json
{
  "npi": "1154494250",
  "providerType": "organization",
  "name": "360 DENTAL CARE P.A.",
  "specialty": "Dentist, General Practice",
  "taxonomyCode": "1223G0001X",
  "phone": "512-327-3631",
  "address1": "3300 BEE CAVES RD STE 305",
  "city": "AUSTIN",
  "state": "TX",
  "postalCode": "787468106",
  "authorizedOfficialName": "JANE DOE",
  "authorizedOfficialTitle": "OWNER",
  "authorizedOfficialPhone": "512-327-3631",
  "enumerationDate": "2009-02-01",
  "profileUrl": "https://npiregistry.cms.hhs.gov/provider-view/1154494250"
}
```

### Uses

- Call and mail lists for anyone selling software, devices, supplies, or services to practices, segmented by specialty and geography
- Organizations mode: skip gatekeepers and get the authorized official's name and title per practice
- Healthcare recruiters: every licensed provider in a specialty and metro, with license numbers
- Scheduled prospecting with `dedupe` on: only never-seen providers each run
- Chain practice names into the Website Contact Scraper for emails once you have the list

### Pricing

Pay per provider row. Providers without any phone number are free rows, and searches that match nothing cost nothing. The first 2 rows of every run are free so you can validate output before you scale up.

### Notes

- Data comes from the official CMS NPPES NPI registry API and reflects what providers filed; addresses are practice locations, and phone coverage is near universal.
- A state on its own is not accepted by the registry; combine it with a specialty, city, or ZIP.
- Wide searches fan out: each specialty x location combo pages through the registry 200 rows at a time.

# Actor input Schema

## `specialties` (type: `array`):

Specialty keywords matched against NPI taxonomy descriptions, e.g. dentist, chiropractor, physical therapy, family medicine, pharmacy.

## `states` (type: `array`):

Two-letter US state codes, e.g. TX, CA, NY. Empty = all states.

## `cities` (type: `array`):

City names, combined with each state if states are set.

## `postalCodes` (type: `array`):

5-digit ZIPs; a trailing \* matches a prefix, e.g. 787\* for all of Austin. Used instead of cities/states when set.

## `providerType` (type: `string`):

Individual providers (doctors, dentists), organizations (practices, clinics, pharmacies), or both.

## `maxProviders` (type: `integer`):

Cap on provider rows returned. Controls total cost.

## `dedupe` (type: `boolean`):

Remember returned NPIs across runs and skip them. Turn on for scheduled prospecting.

## Actor input object example

```json
{
  "specialties": [
    "dentist"
  ],
  "states": [
    "TX"
  ],
  "cities": [],
  "postalCodes": [],
  "providerType": "all",
  "maxProviders": 50,
  "dedupe": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "specialties": [
        "dentist"
    ],
    "states": [
        "TX"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/healthcare-provider-leads").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "specialties": ["dentist"],
    "states": ["TX"],
}

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/healthcare-provider-leads").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "specialties": [
    "dentist"
  ],
  "states": [
    "TX"
  ]
}' |
apify call scrapemint/healthcare-provider-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/healthcare-provider-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Healthcare Provider Leads Scraper: NPI Contacts by Specialty",
        "description": "US healthcare provider leads from the official NPI registry: search by specialty, state, city, or ZIP and get one row per provider with practice phone, address, license, and for organizations the decision maker's name, title, and phone. Keyless official API, no browser. Pay per provider.",
        "version": "0.1",
        "x-build-id": "R1j6MCpiROyRt8Uws"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapemint~healthcare-provider-leads/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapemint-healthcare-provider-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapemint~healthcare-provider-leads/runs": {
            "post": {
                "operationId": "runs-sync-scrapemint-healthcare-provider-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapemint~healthcare-provider-leads/run-sync": {
            "post": {
                "operationId": "run-sync-scrapemint-healthcare-provider-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "specialties": {
                        "title": "Specialties",
                        "type": "array",
                        "description": "Specialty keywords matched against NPI taxonomy descriptions, e.g. dentist, chiropractor, physical therapy, family medicine, pharmacy.",
                        "default": [
                            "dentist"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "states": {
                        "title": "States (optional)",
                        "type": "array",
                        "description": "Two-letter US state codes, e.g. TX, CA, NY. Empty = all states.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "cities": {
                        "title": "Cities (optional)",
                        "type": "array",
                        "description": "City names, combined with each state if states are set.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "postalCodes": {
                        "title": "ZIP codes (optional)",
                        "type": "array",
                        "description": "5-digit ZIPs; a trailing * matches a prefix, e.g. 787* for all of Austin. Used instead of cities/states when set.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "providerType": {
                        "title": "Provider type",
                        "enum": [
                            "all",
                            "individual",
                            "organization"
                        ],
                        "type": "string",
                        "description": "Individual providers (doctors, dentists), organizations (practices, clinics, pharmacies), or both.",
                        "default": "all"
                    },
                    "maxProviders": {
                        "title": "Max providers per run",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Cap on provider rows returned. Controls total cost.",
                        "default": 50
                    },
                    "dedupe": {
                        "title": "Skip providers seen in previous runs",
                        "type": "boolean",
                        "description": "Remember returned NPIs across runs and skip them. Turn on for scheduled prospecting.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
