One-call dossier of everything Healthparse knows about a provider NPI: NPPES identity, tax
One-call dossier of everything Healthparse knows about a provider NPI: NPPES identity, taxonomy and practice address; Medicare ordering-and-referring privileges; NPI exclusion screen (OIG LEIE, GSA SAM, state Medicaid, state boards); change-event history; Medicare Part B utilization and Part D prescribing summaries; Open Payments totals by year; hospital affiliations with star ratings; MIPS quality scores. Absent legs say so explicitly. Records as filed; not a consumer report.
250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-04
updated
Provider
api.healthparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x177eA123A35253ba8869A7e21E717978e482351D",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"change_events": {
"available": true,
"events": [],
"total_events": 0
},
"exclusions_screen": {
"available": true,
"lists_not_applicable": [
"ofac_sdn",
"fda_debarment"
],
"per_list": {
"fda_debarment": null,
"gsa_sam": 0,
"ofac_sdn": null,
"oig_leie": 0,
"state_boards": 0,
"state_medicaid": 0
},
"verdict": {
"clear": true,
"flagged_lists": [],
"hits": 0
}
},
"hospital_affiliations": {
"available": true,
"facilities": [
{
"ccn": "240010",
"city": "ROCHESTER",
"facility_name": "MAYO CLINIC HOSPITAL ROCHESTER",
"facility_type": "Hospital",
"overall_rating": 5,
"state": "MN"
}
]
},
"identity": {
"available": true,
"deactivated": false,
"entity_type": "I",
"practice_address": {
"address": "200 1ST ST SW",
"city": "ROCHESTER",
"state": "MN",
"zip": "55905"
},
"provider_name": "PRUTHI, RAJIV",
"taxonomy_code": "207RH0000X"
},
"legs_available": [
"identity",
"medicare_order_referring",
"exclusions_screen",
"change_events",
"medicare_utilization",
"part_d_prescribing",
"open_payments",
"hospital_affiliations",
"quality_mips"
],
"legs_unavailable": [],
"medicare_order_referring": {
"available": true,
"can_order_refer": {
"dme": true,
"hha": true,
"hospice": true,
"part_b": true,
"pmd": true
}
},
"medicare_utilization": {
"available": true,
"performance_year": 2022,
"primary_specialty": "Hematology",
"total_payment": 2049913.51,
"total_services": 55954
},
"npi": "1154300549",
"open_payments": {
"available": true,
"years": [
{
"by_nature": [
{
"nature_of_payment": "Travel and Lodging",
"total_amount": 4791.81,
"total_records": 4
}
],
"performance_year": 2024,
"total_amount": 8371.84,
"total_records": 7
}
]
},
"part_d_prescribing": {
"available": true,
"years": [
{
"opioid_total_claims": 0,
"performance_year": 2024,
"total_claims": 36,
"total_drug_cost": 161808.44
}
]
},
"quality_mips": {
"available": true,
"years": [
{
"final_score": 96.9,
"payment_adjustment_pct": 6.36,
"performance_year": 2022
}
]
},
"records_notice": "Observational summary of public records as filed with NPPES and CMS program files. Not a consumer report..."
},
"type": "json"
}
},
"routeTemplate": "/v1/providers/:npi/provider360",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/providers/:npi/provider360" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.healthparse.io/v1/providers/:npi/provider360");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.healthparse.io/v1/providers/:npi/provider360")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14920.json, and this resource appears in /discovery/resources and /discovery/search.