Who is this prescriber, and what do they prescribe most in Medicare Part D? Look up a pres
Who is this prescriber, and what do they prescribe most in Medicare Part D? Look up a prescriber by NAME (or exact NPI): NPPES identity — specialty, location — plus that NPI's latest-year Part D summary (top drug, total claims, distinct drugs, and which tracked classes GLP-1/SGLT2/DPP-4/Statin they write). Optionally narrow by state and specialty. Observational public CMS/NPPES records — never a clinical recommendation. Cross-gateway via the Healthparse Part D API.
1250000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-11
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"name": "smith",
"npi": "1558852533",
"state": "GA"
},
"type": "http"
},
"output": {
"example": {
"basis": "Prescriber identity from the public NPPES provider directory joined to that NPI's Medicare Part D prescribing (CMS Prescribers by Provider and Drug), surfaced via the Healthparse Part D API. Observational public records — never a clinical recommendation.",
"rows": [
{
"city": "Mcdonough",
"distinct_drugs": 41,
"drug_classes_written": [
"SGLT2",
"Statin"
],
"has_part_d": true,
"new_to_class": false,
"npi": "1558852533",
"prescriber_name": "John Smith",
"specialty": "Cardiology",
"state": "GA",
"top_drug": "Atorvastatin Calcium",
"total_drug_classes_tracked": 2,
"total_part_d_claims": 6042
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/prescribers/lookup",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"name": {
"description": "Prescriber name — last-name prefix (e.g. Smith) or first+last (e.g. John Smith).",
"examples": [
"smith"
],
"type": "string"
},
"npi": {
"description": "Exact 10-digit National Provider Identifier.",
"examples": [
"1558852533"
],
"type": "string"
},
"specialty": {
"description": "NPPES taxonomy / specialty substring.",
"examples": [
"Cardiology"
],
"type": "string"
},
"state": {
"description": "Prescriber state code(s), two letters, comma-separated.",
"examples": [
"GA"
],
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/prescribers/lookup" # -> 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.govparse.io/v1/prescribers/lookup");
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.govparse.io/v1/prescribers/lookup")
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/14555.json, and this resource appears in /discovery/resources and /discovery/search.