# HealthParse Dialysis Facility Search

> HealthParse Dialysis Facility 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-16).

Search and filter dialysis facilities by geographic area (state, city, ZIP) and CMS star rating to identify quality providers in a market.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/facilities/dialysis/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-dialysis-facility-search-60df52ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o4zAIwrw6EOKxkMNObCv4

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-dialysis-facility-search-60df52ee
```

Example prompt: Show me dialysis facilities in Texas with a CMS star rating of at least 4, limited to the top 25 results.

## When to prefer this

Use this endpoint when you need to discover and compare multiple dialysis facilities across a geographic area based on CMS quality ratings. Prefer this over the single-facility CCN lookup when you don't already have a specific facility identifier and need to identify candidates that meet quality thresholds in a market.

## Known failure modes

- No facilities found matching filters — returns empty result set
- Invalid state abbreviation or unrecognized city name — may return empty or error
- Rating range out of valid CMS bounds — validation error or empty results
- Offset beyond total result count — empty page returned
- Rate limit or payment failure — HTTP 402 or 429 error

## How this service works

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

## Output

A paginated list of dialysis facilities matching the geographic and quality filters, including facility names, locations, and CMS Care Compare star ratings, sourced from monthly-refreshed CMS data.

## 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-dialysis-facility-search-60df52ee/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)
