mirrored listing x402 eip155:8453

Physicians whose TOTAL CMS Open Payments industry payments genuinely increased year-over-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.

Do you run api.healthparse.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
100000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-14
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": {
          "prior_year": "example",
          "state": "example",
          "year": "example"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "prior_year": 2023,
          "records_notice": "Observational year-over-year rollup of the CMS Open Payments (Sunshine Act) General Payments file, keyed on the recipient NPI. amount_current/amount_prior are the physician's TOTAL reported industry payments (all nature_of_payment categories summed) in the current vs prior program year; delta and pct_change are computed from those two real totals — not a single-period magnitude threshold. Only physicians who received a reported payment in BOTH years, with a real increase, are returned. A rise in reported payments is not a judgment about the physician or their prescribing — provider-level program data, not a consumer report, and not for FCRA-regulated eligibility decisions.",
          "rows": [
            {
              "amount_current": 203423.89,
              "amount_prior": 862.08,
              "delta": 202561.81,
              "npi": "1134115397",
              "pct_change": 23496.9,
              "prescriber_city": "Houston",
              "prescriber_name": "Doe, Jane",
              "prescriber_specialty": "Cardiology",
              "prescriber_state": "TX"
            }
          ],
          "selectors": [
            "year=2024",
            "prior_year=2023",
            "min_increase_usd=1000",
            "min_pct_change=10",
            "state=TX",
            "specialty=Cardiology"
          ],
          "total_matched": 873,
          "total_matched_capped": false,
          "year": 2024
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/open-payments/recipients/yoy-increase/search",
    "schema": {
      "$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"
    }
  }
}

Use it

curl

curl "https://api.healthparse.io/v1/open-payments/recipients/yoy-increase/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/open-payments/recipients/yoy-increase/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/open-payments/recipients/yoy-increase/search")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/14912.json, and this resource appears in /discovery/resources and /discovery/search.