# ClearCarePulse Hospital Price Lookup

> ClearCarePulse Hospital Price Lookup is a paid API for AI agents from clear-care-pulse.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: GET https://clear-care-pulse.vercel.app/api/care/hospital
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcarepulse-hospital-price-lookup-21894580
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__AcxipC2I-c_lyKntzWpA

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-21894580
```

Example prompt: What is the published chargemaster price for a total knee replacement at Johns Hopkins Hospital, how does it compare to the Medicare benchmark, and can you give me a negotiation script I can use with the billing department?

## When to prefer this

Use this endpoint when you need hospital-specific published prices plus a Medicare benchmark comparison and a negotiation script in a single call. Prefer it over general procedure-cost search endpoints when the user already knows which hospital they are dealing with and needs actionable negotiation support, not just lowest-cost provider discovery.

## Known failure modes

- Hospital not found or not in database — returns 404 with message indicating no matching facility
- Procedure code or name unrecognized — returns 400 with suggestion to use standard CPT codes
- Hospital has not published prices (non-compliant) — returns partial data with disclaimer
- Rate limit or payment failure — returns 402 if USDC payment not processed
- Service unavailable — returns 503 during downtime

## 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

A structured response containing the hospital's published (chargemaster) price for the requested procedure, the corresponding Medicare reimbursement benchmark for comparison, and a ready-to-use negotiation script the patient or advocate can bring to the billing department.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcarepulse-hospital-price-lookup-21894580/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clear-care-pulse.vercel.app](https://www.zero.xyz/host/clear-care-pulse.vercel.app/llms.txt)
