Healthcare Provider Intelligence - Free NPI API avatar

Healthcare Provider Intelligence - Free NPI API

Pricing

$100.00 / 1,000 charged when a healthcare provider data scan is sus

Go to Apify Store
Healthcare Provider Intelligence - Free NPI API

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

daehwan kim

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

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

ParameterTypeDescriptionDefault
modestringAnalysis mode: hospital_search, doctor_search, quality_comparison, state_market, provider_dashboardhospital_search
querystringHospital or provider name to search (e.g., 'Johns Hopkins', 'Mayo Clinic')Johns Hopkins
statestringUS state abbreviation to filter results (e.g., 'CA', 'MD', 'NY')MD
specialtystringMedical specialty to filter doctors (e.g., 'Cardiology', 'Internal Medicine', 'Pediatrics')
firstNamestringFirst name of the doctor to search for (doctor_search mode)
lastNamestringLast name of the doctor to search for (doctor_search mode)
limitintegerMaximum number of records to return20

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

  1. Set your input parameters
  2. Run the actor
  3. 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();