# Healthparse Manufacturer Search – CMS Open Payments

> Healthparse Manufacturer Search – CMS Open Payments is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search and filter pharmaceutical and medical device manufacturers from CMS Open Payments data by name, spend band, first appearance year, specialty, and state.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/manufacturers/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-manufacturer-search-cms-open-payments-f126b16a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BLawMGKlgWKOXwPLkQs_J

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability healthparse-manufacturer-search-cms-open-payments-f126b16a
```

Example prompt: Find me small or emerging pharma and device manufacturers from CMS Open Payments that first appeared in 2021 or later, pay cardiologists, are active in Texas, and have a total spend under $100,000 — sort by first seen year ascending.

## When to prefer this

Use this endpoint when you need to discover pharmaceutical or medical device manufacturers in CMS Open Payments by name, spend size, or recency of entry — especially to identify small, emerging, or niche brands engaging physicians in a specific specialty or geography. Prefer this over the sibling 'which manufacturers pay a given physician specialty' endpoint when the primary question is about the manufacturer dimension itself (who are the companies?) rather than spend aggregates by specialty. Best for compliance research, competitive landscape mapping, and territory analysis involving new market entrants.

## Known failure modes

- No manufacturers match the combined filters — returns empty result set
- Specialty string doesn't match Open Payments leaf taxonomy exactly — returns empty or unexpected results
- State code not recognized — may return error or empty results
- max_total_spend set too low — filters out all records
- first_seen_year_min/max range excludes all data — empty response
- Offset exceeds total results — returns empty page
- Invalid sort field value — may return error

## How this service works

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.

## Output

Returns a paginated list of entity-resolved manufacturer records from CMS Open Payments, each including the canonical display name (with DBA/subsidiary variants merged), total all-time reported spend, year first seen in the program, count of physician engagements, and number of distinct specialties paid. Results can be sorted by spend, first seen year, engagements, or specialties.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "name": {
     "type": "string",
     "description": "case-insensitive substring of the manufacturer name"
    },
    "sort": {
     "type": "string",
     "description": "total_spend|first_seen_year|physician_engagements|distinct_specialties|display_name, optionally :asc/:desc"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "state": {
     "type": "string",
     "description": "2-letter recipient state code(s), comma-separated"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "specialty": {
     "type": "string",
     "description": "Open Payments recipient specialty leaf, e.g. 'Cardiovascular Disease', 'Hematology & Oncology'"
    },
    "max_total_spend": {
     "type": "number",
     "description": "only manufacturers whose all-time reported spend is ≤ this (small/emerging)"
    },
    "min_total_spend": {
     "type": "number"
    },
    "performance_year": {
     "type": "integer"
    },
    "first_seen_year_max": {
     "type": "integer"
    },
    "first_seen_year_min": {
     "type": "integer",
     "description": "manufacturers first appearing in/after this program year"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-manufacturer-search-cms-open-payments-f126b16a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.healthparse.io](https://www.zero.xyz/host/api.healthparse.io/llms.txt)
