# HealthParse Nonprofit Hospital Executive Compensation Search

> HealthParse Nonprofit Hospital Executive Compensation Search is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Search IRS Form 990 Schedule J data to find officers and key employees at nonprofit hospitals, with compensation details, filterable by EIN, name, or compensation range.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/nonprofits/officers/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-nonprofit-hospital-executive-compensation-search-b4b10733
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1FeeI-HV7JZQHn8YBxPIe

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-nonprofit-hospital-executive-compensation-search-b4b10733
```

Example prompt: Can you look up the executive compensation for officers at nonprofit hospital EIN 36-2169681 — I want to see everyone earning more than $500,000, up to 50 results?

## When to prefer this

Use this endpoint when you need IRS-sourced executive compensation data specifically for nonprofit hospitals and health organizations, particularly when filtering by EIN, officer name, or compensation range. Prefer this over general nonprofit databases when the focus is on healthcare sector executives and Schedule J salary transparency.

## Known failure modes

- No results found for a given EIN if the organization has not filed Schedule J or is not in the dataset
- Name search with very common names may return too many results requiring pagination
- Compensation data may lag by 1-2 years due to IRS filing and processing delays
- Invalid EIN format returns a 400 or empty result
- Offset/limit out of range may return empty results

## How this service works

Search nonprofit hospital executive compensation: officers and key employees by organization (EIN), name, or compensation range. Answers: who are the executives at this nonprofit health org and what do they earn? Source: IRS Form 990 Schedule J.

## Output

A list of officers and key employees at matching nonprofit health organizations, each with their name, title, EIN, and compensation breakdown (total, base, bonus, other) sourced from IRS Form 990 Schedule J filings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "ein": {
     "type": "string"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "name_search": {
     "type": "string"
    },
    "total_compensation_max": {
     "type": "number"
    },
    "total_compensation_min": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-nonprofit-hospital-executive-compensation-search-b4b10733/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)
