# ClearCarePulse Medical Bill Negotiation Guide

> ClearCarePulse Medical Bill Negotiation Guide 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 negotiation scripts, Medicare benchmark pricing, and charity-care options to help patients reduce their medical bills

## Facts

- Endpoint: GET https://clear-care-pulse.vercel.app/api/care/negotiate
- 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-medical-bill-negotiation-guide-4c1c758f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-QNLnyN_C56PuyHwerP7Z

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-medical-bill-negotiation-guide-4c1c758f
```

Example prompt: I just got a $4,200 hospital bill for an appendectomy at St. Mary's — can you pull me the Medicare benchmark rate and a negotiation script so I can call and get it reduced, plus check if there's any charity care I qualify for?

## When to prefer this

Use this endpoint when a patient or patient-advocate agent needs actionable negotiation tools — scripts, anchor pricing, and charity-care pathways — rather than simply looking up list prices. Best when the user already has a bill in hand and wants to actively reduce it rather than compare providers before care.

## Known failure modes

- Unknown procedure code or no Medicare benchmark available — returns partial result or error
- Hospital not found in database — charity-care options may be unavailable
- Missing required bill details — returns validation error
- Ambiguous procedure description — may return multiple benchmark options requiring user disambiguation

## How this service works

Medical bill negotiation guide for healthcare and patient-advocate agents. Returns negotiation scripts, the Medicare benchmark to anchor against, and charity-care options to cut a bill.

## Output

Returns a structured response containing ready-to-use negotiation scripts tailored to the bill, the relevant Medicare benchmark price to use as an anchor, and a list of charity-care and financial assistance programs available to reduce the bill further.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "procedure"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "income": {
   "type": "string",
   "description": "Annual income in USD (for charity care eligibility)"
  },
  "insured": {
   "type": "string",
   "description": "insured"
  },
  "hospital": {
   "type": "string",
   "description": "hospital"
  },
  "procedure": {
   "type": "string",
   "description": "procedure"
  },
  "bill_amount": {
   "type": "string",
   "description": "Bill amount in USD"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcarepulse-medical-bill-negotiation-guide-4c1c758f/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)
