# HealthParse Nonprofit Health Organization Search

> HealthParse Nonprofit Health Organization 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 nonprofit health organizations by state, NTEE code, revenue/expense range, or name to identify matching organizations by financial profile.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/nonprofits/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-health-organization-search-8cee29fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WnOVTbNGeswlqdyKVSdn4

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-health-organization-search-8cee29fb
```

Example prompt: Find nonprofit health organizations in California with annual revenue between $5 million and $50 million — use NTEE code E22 and return the top 25 results.

## When to prefer this

Use this endpoint when you need to discover or filter nonprofit health organizations by financial profile, geography, or NTEE classification using IRS 990 data. Prefer this over general nonprofit databases when healthcare-sector specificity and financial metrics (revenue, net income) are the primary filters. Best for compliance research, competitive analysis, grant prospecting, or market mapping of nonprofit health entities.

## Known failure modes

- No results returned if filters are too restrictive or state/NTEE code combination has no matches
- Invalid NTEE code format returns an error or empty result set
- Revenue range with min greater than max may return error or empty results
- Pagination offset beyond available results returns empty list
- Invalid state abbreviation may return empty results or error

## How this service works

Search nonprofit health organizations by state, NTEE code, revenue or expense range, or name. Answers: which nonprofit hospitals/health orgs match this financial profile? Source: IRS Form 990 e-filings.

## Output

A paginated list of nonprofit health organizations matching the specified filters, including organization name, state, NTEE code, revenue, net income, and other financial profile data sourced from IRS Form 990 e-filings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "state": {
     "type": "string"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "ntee_code": {
     "type": "string"
    },
    "name_search": {
     "type": "string"
    },
    "revenue_max": {
     "type": "number"
    },
    "revenue_min": {
     "type": "number"
    },
    "net_income_max": {
     "type": "number"
    },
    "net_income_min": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

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