NPI Provider Contact Finder
Pricing
from $0.70 / 1,000 results
NPI Provider Contact Finder
Find healthcare provider emails and contacts from NPI registry. Generate sales leads with doctor emails, LinkedIn profiles, practice websites. No API key.
NPI Provider Contact Finder
Pricing
from $0.70 / 1,000 results
Find healthcare provider emails and contacts from NPI registry. Generate sales leads with doctor emails, LinkedIn profiles, practice websites. No API key.
You can access the NPI Provider Contact Finder programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
{ "openapi": "3.0.1", "info": { "version": "0.0", "x-build-id": "ivh0DxPCfoPbuxw78" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/labrat011~npi-provider-contact-finder/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-labrat011-npi-provider-contact-finder", "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/labrat011~npi-provider-contact-finder/runs": { "post": { "operationId": "runs-sync-labrat011-npi-provider-contact-finder", "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/labrat011~npi-provider-contact-finder/run-sync": { "post": { "operationId": "run-sync-labrat011-npi-provider-contact-finder", "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", "required": [ "mode" ], "properties": { "mode": { "title": "๐ Scraping mode", "enum": [ "search_providers", "get_provider", "search_organizations", "search_by_specialty", "bulk_lookup" ], "type": "string", "description": "Select what to do: search providers, get by NPI number, search organizations, or search by specialty.", "default": "search_providers" }, "query": { "title": "๐ Search query", "type": "string", "description": "General search term. Used as last name (search_providers), organization name (search_organizations), or specialty (search_by_specialty) depending on mode. For multiple searches in one run, use 'searchQueriesList' instead." }, "searchQueriesList": { "title": "๐ Batch Search Queries", "type": "array", "description": "Run multiple searches in one go. Each item replaces the 'query' field for one search run. Results are automatically deduped by NPI number across all queries. Works with search_providers, search_organizations, and search_by_specialty modes. If provided, takes precedence over the single 'query' field.", "items": { "type": "string" } }, "npiNumber": { "title": "๐ชช NPI Number", "type": "string", "description": "10-digit NPI number for direct lookup (get_provider mode)." }, "npiNumbers": { "title": "๐ NPI Numbers (bulk)", "type": "array", "description": "JSON array of 10-digit NPI numbers for bulk_lookup mode. Example: [\"1234567890\", \"0987654321\"]", "items": { "type": "string" } }, "npiFile": { "title": "๐ NPI CSV File URL (bulk)", "type": "string", "description": "URL to a CSV file containing NPI numbers for bulk_lookup mode. The file should have a column named 'npi', 'npi_number', or 'NPI', or list one NPI per row. Supports any publicly accessible URL or Apify Key-Value Store URL." }, "firstName": { "title": "๐ค First Name", "type": "string", "description": "Provider's first name (individual providers only)." }, "lastName": { "title": "๐ค Last Name", "type": "string", "description": "Provider's last name (individual providers only)." }, "organizationName": { "title": "๐ฅ Organization Name", "type": "string", "description": "Organization name (e.g., 'Mayo Clinic', 'Johns Hopkins'). Used in search_organizations mode." }, "taxonomyDescription": { "title": "๐ฉบ Specialty / Taxonomy", "type": "string", "description": "Specialty or taxonomy description (e.g., 'Cardiology', 'Internal Medicine', 'Oncology'). Used in search_by_specialty mode." }, "city": { "title": "๐๏ธ City", "type": "string", "description": "Filter by city." }, "state": { "title": "๐บ๏ธ State", "type": "string", "description": "Two-letter state code (e.g., 'CA', 'NY', 'TX')." }, "postalCode": { "title": "๐ฎ Postal Code", "type": "string", "description": "ZIP/postal code filter." }, "countryCode": { "title": "๐ Country Code", "type": "string", "description": "Two-letter country code (default: US)." }, "enumerationType": { "title": "๐ท๏ธ Provider Type", "enum": [ "", "NPI-1", "NPI-2" ], "type": "string", "description": "Filter by NPI type." }, "maxResults": { "title": "๐ Max results", "minimum": 1, "maximum": 1000, "type": "integer", "description": "Maximum number of providers to return (1-1000). Free users are limited to 25 per run.", "default": 100 }, "requestIntervalSecs": { "title": "โฑ๏ธ Request interval (seconds)", "minimum": 0.2, "maximum": 5, "type": "number", "description": "Minimum seconds between API requests.", "default": 0.5 }, "timeoutSecs": { "title": "โณ HTTP timeout (seconds)", "minimum": 10, "maximum": 120, "type": "integer", "description": "Timeout for API requests.", "default": 30 }, "maxRetries": { "title": "๐ Max retries", "minimum": 0, "maximum": 10, "type": "integer", "description": "Maximum retry attempts on failed requests.", "default": 5 }, "enableEmailEnrichment": { "title": "๐ง Enable Email Enrichment", "type": "boolean", "description": "Scrape practice websites for email addresses (office, billing, manager contacts). Adds $0.30/1K contacts to pricing.", "default": false }, "enableLinkedInEnrichment": { "title": "๐ผ Enable LinkedIn Enrichment", "type": "boolean", "description": "Search for provider LinkedIn profiles. Useful for B2B outreach and relationship building. Adds $0.50/1K contacts to pricing.", "default": false }, "enableSocialMediaEnrichment": { "title": "๐ฑ Enable Social Media Enrichment", "type": "boolean", "description": "Extract all social media links (Facebook, Twitter, Instagram, Healthgrades, Vitals, Zocdoc). Adds $0.20/1K contacts to pricing.", "default": false }, "emailEnrichmentTimeout": { "title": "โฑ๏ธ Email Enrichment Timeout (seconds)", "minimum": 5, "maximum": 30, "type": "integer", "description": "Timeout for scraping each practice website. Lower = faster but may miss emails. Higher = slower but more thorough.", "default": 10 } } }, "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 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for NPI Provider Contact Finder from the options below:
If youโd like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: