Screen physicians industry is already paying — the recipient side of the CMS Open Payments
Screen physicians industry is already paying — the recipient side of the CMS Open Payments (Sunshine Act) file, ranked by total reported payment amount. Filter by specialty, state, nature_of_payment, and min_amount. Prescriber name / specialty / state / city are resolved by joining the NPI to the CMS Part D Prescribers file (Open Payments carries none of them). Public CMS provider-level data; not a consumer report.
100000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-11
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": {
"performance_year": "example",
"specialty": "example",
"state": "example"
},
"type": "http"
},
"output": {
"example": {
"performance_year": 2024,
"records_notice": "Observational rollup of the CMS Open Payments (Sunshine Act) General Payments file, keyed on the recipient NPI. A row means a physician appears in the public federal payments file for the stated year — not a judgment about the provider. Name / specialty / state / city are resolved by joining the NPI to the CMS Part D Prescribers file (the Open Payments file carries none of them). Provider-level program data — not a consumer report, and not for FCRA-regulated eligibility decisions.",
"rows": [
{
"nature_of_payment": "Consulting Fee",
"npi": "1952964959",
"prescriber_city": "San Pablo",
"prescriber_name": "Roe, John",
"prescriber_specialty": "Cardiology",
"prescriber_state": "CA",
"total_amount": 42500,
"total_records": 18
}
],
"selectors": [
"performance_year=2024",
"state=CA",
"specialty=Cardiology",
"min_amount=1000"
],
"total_matched": 1,
"total_matched_capped": false
},
"type": "json"
}
},
"routeTemplate": "/v1/open-payments/recipients/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"min_amount": {
"description": "minimum reported total payment amount (USD)",
"type": "number"
},
"nature_of_payment": {
"description": "payment category substring, e.g. 'Consulting'",
"type": "string"
},
"offset": {
"default": 0,
"type": "integer"
},
"performance_year": {
"description": "Open Payments program year (default 2024, the latest loaded)",
"type": "integer"
},
"specialty": {
"description": "prescriber specialty substring, e.g. 'Cardiology'",
"type": "string"
},
"state": {
"description": "2-letter prescriber state code(s), comma-separated",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/open-payments/recipients/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/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/search")
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/14913.json, and this resource appears in /discovery/resources and /discovery/search.