Physicians whose TOTAL CMS Open Payments industry payments genuinely increased y
Physicians whose TOTAL CMS Open Payments industry payments genuinely increased year-over-year — a real per-NPI delta (amount_current vs amount_prior), not a magnitude threshold. Defaults to 2023→2024 (any loaded year pair selectable via year/prior_year). Filter: specialty, state, min_increase_usd (default $1,000), min_pct_change (default 10%). Only physicians paid in BOTH years with a real rise clearing both thresholds are returned. Public CMS provider-level data; not a consumer report.
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.healthparse.io/v1/open-payments/recipients/yoy-increase/search
| Category | Search and research |
|---|---|
| Provider host | api.healthparse.io |
| Networks | eip155:8453 |
| 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 | $0.1 | 277 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"prior_year": "example",
"state": "example",
"year": "example"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"min_increase_usd": {
"description": "minimum dollar increase (default 1000)",
"type": "number"
},
"min_pct_change": {
"description": "minimum percent increase (default 10)",
"type": "number"
},
"offset": {
"default": 0,
"type": "integer"
},
"prior_year": {
"description": "comparison program year (default year-1)",
"type": "integer"
},
"specialty": {
"description": "prescriber specialty substring, e.g. 'Cardiology'",
"type": "string"
},
"state": {
"description": "2-letter prescriber state code(s), comma-separated",
"type": "string"
},
"year": {
"description": "current program year (default 2024, the latest loaded)",
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
}