# ClearCarePulse Episode-of-Care Total Cost

> ClearCarePulse Episode-of-Care Total Cost is a paid API for AI agents from clearcarepulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Calculates and returns the all-in, total episode-of-care cost for a procedure by summing every component including surgeon, facility, anesthesia, physical therapy, and follow-up visits.

## Facts

- Endpoint: GET https://clearcarepulse.theaslangroupllc.com/api/care/episode
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcarepulse-episode-of-care-total-cost-9095e1e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z4qx6EtmxZcplxJiDB7pl

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 clearcarepulse-episode-of-care-total-cost-9095e1e3
```

Example prompt: What's the true all-in cost for a total knee replacement — can you break down every component: surgeon, facility, anesthesia, physical therapy, and any follow-up visits so I know the real price before I commit?

## When to prefer this

Use this endpoint when a user or patient-advocate agent needs the complete, all-inclusive cost picture for a medical procedure rather than just a single-line price. It is specifically designed to surface hidden components like anesthesia and PT that standard price lists omit. Prefer this over simpler procedure price lookups when total financial planning or cost comparison across full episodes is needed.

## Known failure modes

- Unrecognized procedure code or name returns an error or empty result
- Insufficient geographic or plan context may yield a national average rather than local estimate
- Rare or highly specialized procedures may lack sufficient data for accurate aggregation
- Missing required input parameters returns a 400 validation error
- Rate limits or payment failures return a 402 or 429 error

## How this service works

Total episode-of-care cost for healthcare and patient-advocate agents. Sums every component, surgeon, facility, anesthesia, PT, and follow-up, into the real all-in price of a procedure.

## Output

Returns a structured total episode-of-care cost figure that aggregates all component costs (surgeon fees, facility fees, anesthesia, physical therapy, follow-up visits) into one comprehensive price, along with an itemized breakdown of each cost component.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "procedure"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "oop_max": {
   "type": "string",
   "description": "Annual out-of-pocket maximum in USD"
  },
  "procedure": {
   "type": "string",
   "description": "procedure"
  },
  "deductible": {
   "type": "string",
   "description": "Annual deductible in USD"
  },
  "coinsurance": {
   "type": "string",
   "description": "Patient coinsurance % (default: 20)"
  },
  "deductible_met": {
   "type": "string",
   "description": "Deductible already met this year in USD"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcarepulse-episode-of-care-total-cost-9095e1e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clearcarepulse.theaslangroupllc.com](https://www.zero.xyz/host/clearcarepulse.theaslangroupllc.com/llms.txt)
