# HealthParse ASC Search

> HealthParse ASC 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 CMS ambulatory surgical center (ASC) data by state, CCN, or facility name to identify ASCs in a given market.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/asc/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-asc-search-05eb58f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NH_R19vKg00A72AxNOqFD

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-asc-search-05eb58f3
```

Example prompt: Can you find all ambulatory surgical centers in Florida using CMS cost data — show me up to 50 results?

## When to prefer this

Use this endpoint when you need to discover or enumerate ambulatory surgical centers (ASCs) within a specific state or market, look up a known ASC by its CCN, or search by facility name — especially when CMS-sourced, authoritative data is required for healthcare market analysis or compliance research.

## Known failure modes

- No results returned when state abbreviation is invalid or not recognized
- Empty result set if no ASCs match the name_search string
- Offset/limit misconfiguration may return unexpected pagination results
- CCN not found if the facility is not in the CMS ASC cost dataset
- API returns error if no search parameters are provided

## How this service works

Search ambulatory surgical centers (ASCs) by state, CCN, or name. Answers: which ASCs are in a given market? Source: CMS ASC cost data.

## Output

A paginated list of ambulatory surgical center (ASC) records sourced from CMS ASC cost data, including facility names, CCNs, and state information, filtered by the supplied search parameters (state, CCN, or name).

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-asc-search-05eb58f3/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)
