# HealthParse Medicare Part D Prescriber Drug Search

> HealthParse Medicare Part D Prescriber Drug Search is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search Medicare Part D prescribers of a specific drug or therapeutic class at NPI level, with filters for specialty, state, claim volume, and year

## Facts

- Endpoint: GET https://api.healthparse.io/v1/prescribers/part-d/by-drug/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-medicare-part-d-prescriber-drug-search-1275d70e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gmISzdB572GZUyIsFAXxf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability healthparse-medicare-part-d-prescriber-drug-search-1275d70e
```

Example prompt: Pull me a list of the top 50 endocrinologists in Texas who prescribed Ozempic in 2024 with at least 100 claims, using the HealthParse Part D prescriber search.

## When to prefer this

Use this endpoint when you need to identify, rank, or target Medicare Part D prescribers of a specific drug or drug class at the individual NPI level — ideal for pharma sales targeting, market research, provider outreach lists, and competitive landscape analysis using public CMS data. Prefer this over general provider search endpoints when the primary filter is a drug name or therapeutic class rather than service volume or payment amount.

## Known failure modes

- Drug name not found in CMS Part D data — returns empty results or error
- Drug class value not in supported enum (GLP-1, SGLT2, DPP-4, Statin) — validation error
- Invalid 2-letter state code — no results or error
- Year not loaded (only 2023 and 2024 available) — error or empty response
- Overly restrictive filters (high min_claims + narrow specialty + rare drug) — empty result set
- Payment failure via x402 protocol — 402 response, no data returned

## How this service works

Find Medicare Part D prescribers of a specific DRUG or therapeutic CLASS at NPI level — the core pharma targeting query. Filter by drug_class (GLP-1, SGLT2, DPP-4, Statin, from partd_drug_class) or a single drug (brand or generic, e.g. 'Ozempic'), plus specialty, state, min_claims, min_beneficiaries, year. Each hit carries the drug's claim/cost volume and the prescriber's specialty/state/city. Public CMS provider-level data; not a consumer report.

## Output

A paginated list of Medicare Part D prescribers matching the query, each record containing the prescriber's NPI, name, specialty, state, and city, along with drug-specific metrics including total Part D claims, total drug cost, and total beneficiaries for the specified drug or drug class and year.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "drug": {
     "type": "string",
     "description": "a single drug, brand or generic (e.g. 'Ozempic' or 'Semaglutide'); brands resolve to the canonical generic"
    },
    "year": {
     "type": "integer",
     "description": "performance year (loaded: 2023, 2024; default 2024)"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "state": {
     "type": "string",
     "description": "2-letter prescriber state code(s), comma-separated"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "specialty": {
     "type": "string",
     "description": "prescriber specialty substring, e.g. 'Endocrinology'"
    },
    "brand_name": {
     "type": "string",
     "description": "CMS brand-name prefix (case-insensitive), e.g. 'Eliquis'"
    },
    "drug_class": {
     "type": "string",
     "description": "therapeutic class from partd_drug_class, e.g. 'GLP-1' | 'SGLT2' | 'DPP-4' | 'Statin'"
    },
    "min_claims": {
     "type": "integer",
     "description": "minimum total Part D claims for the drug (that year)"
    },
    "generic_name": {
     "type": "string",
     "description": "CMS generic-name prefix (case-insensitive), e.g. 'Apixaban'"
    },
    "min_beneficiaries": {
     "type": "integer",
     "description": "minimum total beneficiaries (null/suppressed rows excluded)"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-medicare-part-d-prescriber-drug-search-1275d70e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.healthparse.io](https://www.zero.xyz/host/api.healthparse.io/llms.txt)
