# SuVerse GovHub — CMS Open Payments

> SuVerse GovHub — CMS Open Payments is a paid API for AI agents from api.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Queries the CMS Open Payments database to retrieve financial relationships between pharmaceutical/device companies and physicians by NPI and year

## Facts

- Endpoint: POST https://api.suverse.io/v1/gov/cms_open_payments
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-govhub-cms-open-payments-078488b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YjWLvHkWXeyQCyGtKaFpZ

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 suverse-govhub-cms-open-payments-078488b2 -d '<json body>'
```

Example prompt: Pull up the CMS Open Payments records for physician NPI 1234567890 for the year 2022 — I want to see what pharmaceutical or medical device companies paid them.

## When to prefer this

Use this endpoint when you need structured, programmatic access to CMS Open Payments data for a specific physician by NPI without scraping the CMS website directly. Ideal for compliance workflows, conflict-of-interest checks, healthcare research, and investigative journalism tooling. Prefer this over direct CMS API calls when pay-per-call micropayment access via x402 is acceptable and you want a managed gateway with predictable pricing.

## Known failure modes

- Invalid or non-existent NPI returns empty results or error
- Year outside available CMS data range returns no records
- Malformed NPI string causes validation error
- Rate limiting or upstream CMS API unavailability causes timeout
- Payment data not yet published for very recent years

## How this service works

SuVerse GovHub — CMS Open Payments (cms.open_payments)

## Output

Returns structured payment records from the CMS Open Payments database for the specified physician NPI and year, including payment amounts, paying company names, payment categories (e.g. general payments, research, ownership interests), and associated metadata as reported under the Sunshine Act.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "params": {
   "type": "object",
   "properties": {
    "year": {
     "type": "number"
    },
    "physician_npi": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

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