Who is this prescriber, and what do they prescribe most in Medicare Part D?
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.govparse.io/v1/prescribers/lookup
| Category | Everything else |
|---|---|
| Provider host | api.govparse.io |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $1.25 | 253 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"name": "smith",
"npi": "1558852533",
"state": "GA"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"name": {
"description": "Prescriber name \u2014 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"
}