# ClearCarePulse Medical Bill Rights Check

> ClearCarePulse Medical Bill Rights Check is a paid API for AI agents from clearcarepulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a deterministic eligibility verdict for the $5 medical-bill letter — identifying which legal rights and statutes apply, computing applicable deadlines, and explaining what the full letter would add, without drafting any document.

## Facts

- Endpoint: GET https://clearcarepulse.theaslangroupllc.com/api/care/rights-check
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcarepulse-medical-bill-rights-check-ac0d89a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pRsRofzkZ5K1XFZf0zQ1Y

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-rights-check-ac0d89a8
```

Example prompt: I got an out-of-network emergency room bill for $4,200 from a service date of March 10, 2024 in Texas — can you check if I'm still within the window to dispute it and which laws like the No Surprises Act actually protect me, before I buy the full dispute letter?

## When to prefer this

Choose this endpoint when an agent needs to pre-qualify a patient's medical bill dispute eligibility before committing to the full letter generation endpoint. It is ideal for cost-conscious workflows where the $5 letter should only be purchased when eligibility is confirmed, or when a user needs to know definitively whether their dispute window has expired. This endpoint is deterministic and rule-based — no LLM, no drafted documents — making it reliable for legal-status lookups where consistency matters.

## Known failure modes

- Missing required parameters (bill type, date, state, insurance status) return a 400 error
- Service date too old — system returns honest 'expired window' verdict rather than an error
- Scenario falls outside all applicable protections — returns honest negative eligibility verdict
- Ambiguous insurance type may produce uncertain statute mapping
- Network connectivity issues may return 5xx errors

## How this service works

Agent-tier preview of the $5 medical-bill letter: deterministic eligibility verdict, which rights/statutes apply, computed deadlines, and exactly what the full letter adds — no document drafted, no LLM. Honest-no on expired windows and unprotected scenarios.

## Output

A structured eligibility verdict indicating whether the scenario qualifies for a medical bill dispute, which specific federal and state rights and statutes apply (e.g. No Surprises Act, state balance billing laws), the computed deadline dates for action, and a clear explanation of what the full dispute letter would add — with honest negative verdicts for expired windows or unprotected scenarios.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "check"
 ],
 "properties": {
  "check": {
   "type": "string",
   "description": "surprise | gfe | assistance | appeal | msn"
  },
  "scenario": {
   "type": "string",
   "description": "surprise: emergency | oon_at_in_network | air_ambulance | ground_ambulance"
  },
  "plan_type": {
   "type": "string",
   "description": "surprise: employer_self_funded | employer_insured | marketplace | medicare | medicaid | uninsured"
  },
  "gfe_amount": {
   "type": "string",
   "description": "gfe: the good-faith estimate total"
  },
  "denial_date": {
   "type": "string",
   "description": "appeal: denial date YYYY-MM-DD"
  },
  "billed_amount": {
   "type": "string",
   "description": "gfe: what they actually billed"
  },
  "first_statement_date": {
   "type": "string",
   "description": "assistance: first post-discharge billing statement date"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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