Discover pharma & device MANUFACTURERS from CMS Open Payments by name, total-spend band, o
Discover pharma & device MANUFACTURERS from CMS Open Payments by name, total-spend band, or year of first appearance — the emerging/small-brand filter (low total_spend and/or recent first_seen_year) plus optional specialty/state activity. Answers: which small or new manufacturers pay physicians in my category and territory? Entity-resolved company dimension (DBA/subsidiary variants merged). Filter: name, max_total_spend, first_seen_year_min/max, specialty, state.
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-04
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": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"max_total_spend": "example",
"min_total_spend": "example",
"name": "example"
},
"type": "http"
},
"output": {
"example": {
"records_notice": "Observational rollup of the CMS Open Payments General Payments file, keyed on the paying manufacturer/GPO...",
"rows": [
{
"display_name": "Mission Pharmacal Company",
"distinct_specialties": 44,
"distinct_states": 51,
"first_seen_year": 2022,
"last_seen_year": 2025,
"maker_ids": [
"100000000123"
],
"manufacturer_key": "MISSION PHARMACAL",
"name_variants": [
"Mission Pharmacal Company"
],
"payment_count": 51233,
"physician_engagements": 9021,
"record_count": 48120,
"top_specialty": "Urology",
"top_state": "TX",
"total_spend": 842190.55
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/manufacturers/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"first_seen_year_max": {
"type": "integer"
},
"first_seen_year_min": {
"description": "manufacturers first appearing in/after this program year",
"type": "integer"
},
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"max_total_spend": {
"description": "only manufacturers whose all-time reported spend is ≤ this (small/emerging)",
"type": "number"
},
"min_total_spend": {
"type": "number"
},
"name": {
"description": "case-insensitive substring of the manufacturer name",
"type": "string"
},
"offset": {
"default": 0,
"type": "integer"
},
"performance_year": {
"type": "integer"
},
"sort": {
"description": "total_spend|first_seen_year|physician_engagements|distinct_specialties|display_name, optionally :asc/:desc",
"type": "string"
},
"specialty": {
"description": "Open Payments recipient specialty leaf, e.g. 'Cardiovascular Disease', 'Hematology & Oncology'",
"type": "string"
},
"state": {
"description": "2-letter recipient state code(s), comma-separated",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/manufacturers/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/manufacturers/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/manufacturers/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/14919.json, and this resource appears in /discovery/resources and /discovery/search.