# HealthParse Home Health Agency Search

> HealthParse Home Health Agency 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 and filter home health agencies by state, city, ZIP code, or CMS star rating using CMS Care Compare data

## Facts

- Endpoint: GET https://api.healthparse.io/v1/facilities/home-health/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-home-health-agency-search-620f9678
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HyYyaFwALaJ8v8eI3P_he

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-home-health-agency-search-620f9678
```

Example prompt: Can you find home health agencies in Austin, Texas with a CMS star rating of at least 4 stars? Give me up to 25 results.

## When to prefer this

Use this endpoint when you need to discover and filter home health agencies across a geographic market by quality scores. Prefer this over the individual CCN lookup endpoint when you don't already know specific agency identifiers and need to survey a market. Best for market research, provider selection, and quality benchmarking use cases.

## Known failure modes

- No results returned if no agencies match the specified rating range or geography
- Invalid state abbreviation returns validation error
- ZIP prefix not matching any known area returns empty result set
- rating_min greater than rating_max returns an error or empty results
- Exceeding limit of 100 returns a validation error

## How this service works

Search home health quality data by state, city, ZIP, or CMS star rating. Answers: which home health meet quality thresholds in a market? Source: CMS Care Compare, monthly refresh.

## Output

A paginated list of home health agencies matching the specified geographic and quality filters, including agency names, locations, and CMS Care Compare star ratings sourced from monthly CMS data refreshes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "city": {
     "type": "string"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "state": {
     "type": "string"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "rating_max": {
     "type": "number"
    },
    "rating_min": {
     "type": "number"
    },
    "zip_prefix": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-home-health-agency-search-620f9678/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)
