Healthcare Provider Intelligence - Free NPI API
Pricing
$100.00 / 1,000 charged when a healthcare provider data scan is sus
Healthcare Provider Intelligence - Free NPI API
Free healthcare provider API for hospitals, physicians, clinics. Get CMS quality ratings, NPI profiles, compare provider credentials and patient outcomes without subscription. Replace Definitive Healthcare ($50K/yr). No API keys required, pay-per-use.
Pricing
$100.00 / 1,000 charged when a healthcare provider data scan is sus
Rating
0.0
(0)
Developer
daehwan kim
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Share
Healthcare Provider Intelligence - CMS & NPI
Search hospitals and doctors, compare quality ratings, and analyze provider statistics using free CMS Provider Data and NPI Registry APIs. No API key required. Covers hospitals, physicians, quality scores, and state-level market dashboards.
Features
- Search hospitals by name or location using CMS Provider of Services data
- Look up doctors and specialists by name, specialty, and state via NPI Registry
- Compare hospital quality ratings including star ratings and patient outcome metrics
- Analyze state-level healthcare market statistics and provider distribution
- Generate provider dashboards with quality benchmarks and peer comparisons
Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
mode | string | Analysis mode: hospital_search, doctor_search, quality_comparison, state_market, provider_dashboard | hospital_search |
query | string | Hospital or provider name to search (e.g., 'Johns Hopkins', 'Mayo Clinic') | Johns Hopkins |
state | string | US state abbreviation to filter results (e.g., 'CA', 'MD', 'NY') | MD |
specialty | string | Medical specialty to filter doctors (e.g., 'Cardiology', 'Internal Medicine', 'Pediatrics') | — |
firstName | string | First name of the doctor to search for (doctor_search mode) | — |
lastName | string | Last name of the doctor to search for (doctor_search mode) | — |
limit | integer | Maximum number of records to return | 20 |
Output
The actor returns structured JSON data with provider profiles, quality scores, patient outcome metrics, and market statistics.
Pricing
This actor uses pay-per-event pricing at $0.05 per successful analysis.
Usage
- Set your input parameters
- Run the actor
- Get results from the dataset
API Integration
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('ntriqpro/healthcare-provider-intelligence').call({mode: 'hospital_search',query: 'Mayo Clinic',state: 'MN',});const { items } = await client.dataset(run.defaultDatasetId).listItems();