# ClearCarePulse Hospital Price Lookup

> ClearCarePulse Hospital Price Lookup is a paid API for AI agents from clearcarepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns published hospital prices, the Medicare benchmark, and a negotiation script for any procedure at a specified hospital.

## Facts

- Endpoint: GET https://clearcarepulse.theaslangroupllc.com/api/care/hospital
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcarepulse-hospital-price-lookup-a3820b22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gNAcef9pulP_6ukCmSO-i

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-hospital-price-lookup-a3820b22
```

Example prompt: Can you look up what Cedars-Sinai Medical Center publishes for a total knee replacement — show me the chargemaster price, what Medicare would pay, and give me a negotiation script I can use when talking to the billing department?

## When to prefer this

Use this endpoint when a user needs hospital-specific published prices and Medicare benchmarks for a named procedure at a specific facility, especially when the goal is to negotiate a bill or prepare for a scheduled procedure. Prefer this over general procedure search endpoints when the hospital is already known and the user wants both price context and actionable negotiation guidance in a single call.

## Known failure modes

- Hospital not found in database — returns error indicating unrecognized facility
- Procedure code or name not matched — returns error with suggested alternatives
- Hospital has not published prices for the requested procedure — returns partial or null price data
- Invalid request parameters — returns 400-level error
- Payment not processed — returns 402 Payment Required

## How this service works

Hospital price lookup for healthcare and patient-advocate agents. Returns published prices, the Medicare benchmark, and a negotiation script for any procedure at a given hospital.

## Output

Returns the hospital's published (chargemaster) price for the requested procedure, the corresponding Medicare reimbursement benchmark for comparison, and a ready-to-use negotiation script tailored to that procedure and hospital to help patients advocate for lower costs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "hospital",
  "procedure"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "hospital": {
   "type": "string",
   "description": "Hospital name — e.g., 'Cleveland Clinic', 'Stanford Medical Center'"
  },
  "procedure": {
   "type": "string",
   "description": "Procedure name"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcarepulse-hospital-price-lookup-a3820b22/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)
