Which manufacturers pay a given physician specialty in a territory, and how much
Which manufacturers pay a given physician specialty in a territory, and how much — CMS Open Payments rolled up to the paying company. Answers: which pharma/device companies already reach cardiologists in Texas, and which are the small/emerging ones (max_total_spend) to partner with or compete against? Filter: specialty, state, performance_year (defaults to latest), max_total_spend/min_total_spend, min_physicians; sort by matched_amount or manufacturer_total_spend (asc = smallest first).
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/manufacturers/open-payments
| Category | Company and compliance |
|---|---|
| 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.03 | 276 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"performance_year": "example",
"specialty": "example",
"state": "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"
},
"max_total_spend": {
"description": "only manufacturers whose all-time reported spend is \u2264 this (small/emerging)",
"type": "number"
},
"min_physicians": {
"description": "minimum matched physician\u00d7specialty\u00d7state relationships",
"type": "number"
},
"min_total_spend": {
"type": "number"
},
"offset": {
"default": 0,
"type": "integer"
},
"performance_year": {
"description": "program year; defaults to the latest loaded",
"type": "integer"
},
"sort": {
"description": "matched_amount|manufacturer_total_spend|first_seen_year|matched_physician_cells, optionally :asc/:desc",
"type": "string"
},
"specialty": {
"description": "Open Payments recipient specialty leaf, e.g. 'Cardiovascular Disease'",
"type": "string"
},
"state": {
"description": "2-letter recipient state code(s), comma-separated",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}