Screen Medicare Part D prescribers by specialty, state, and claim volume — the per-prescri
Screen Medicare Part D prescribers by specialty, state, and claim volume — the per-prescriber roster a pharma / device team targets. Optional drug_category (brand | opioid | opioid_long_acting | antibiotic) selects the matching CMS *_total_claims column for BOTH the min_claims threshold and the ranking (else total_claims). Returns one row per NPI with the CMS claim rollups. Public CMS provider-level data; not a consumer report.
100000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-11
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": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"performance_year": "example",
"specialty": "example",
"state": "example"
},
"type": "http"
},
"output": {
"example": {
"drug_category": null,
"performance_year": 2024,
"records_notice": "Observational, roster-level rollup of the CMS 'Medicare Part D Prescribers — by Provider' public file. One row per prescriber (NPI). Claim counts are the CMS totals for the stated year; the selected drug_category maps to the matching CMS *_total_claims column (brand / opioid / long-acting opioid / antibiotic), else total_claims. prescriber_specialty/state/city are the values filed on the CMS record. Provider-level program data — not a consumer report, and not for FCRA-regulated eligibility decisions.",
"rows": [
{
"antibiotic_total_claims": 12,
"brand_total_claims": 640,
"npi": "1811284078",
"opioid_total_claims": 0,
"prescriber_city": "Edinburg",
"prescriber_name": "Doe, Jane",
"prescriber_specialty": "Endocrinology",
"prescriber_state": "TX",
"total_claims": 2110
}
],
"selectors": [
"performance_year=2024",
"state=TX",
"specialty=Endocrinology",
"min_claims=50"
],
"total_matched": 1,
"total_matched_capped": false
},
"type": "json"
}
},
"routeTemplate": "/v1/prescribers/part-d/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"drug_category": {
"description": "select the matching CMS *_total_claims column (drives min_claims + sort); omit for total_claims",
"enum": [
"brand",
"opioid",
"opioid_long_acting",
"antibiotic"
],
"type": "string"
},
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"min_claims": {
"description": "minimum claims on the selected column (default 50)",
"type": "integer"
},
"offset": {
"default": 0,
"type": "integer"
},
"performance_year": {
"description": "Part D program year (default 2024, the latest loaded)",
"type": "integer"
},
"specialty": {
"description": "prescriber specialty substring, e.g. 'Endocrinology'",
"type": "string"
},
"state": {
"description": "2-letter prescriber state code(s), comma-separated",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/prescribers/part-d/search" # -> 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/prescribers/part-d/search");
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/prescribers/part-d/search")
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/14914.json, and this resource appears in /discovery/resources and /discovery/search.