# ClearCare Pulse Procedure Price Search

> ClearCare Pulse Procedure Price Search 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-16).

Returns the lowest-cost healthcare providers sorted by price for any shoppable procedure, filtered by ZIP code

## Facts

- Endpoint: GET https://clearcarepulse.theaslangroupllc.com/api/care/search
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcare-pulse-procedure-price-search-a7eabafa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JYEzee0vwmc2qT4PJMbem

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 clearcare-pulse-procedure-price-search-a7eabafa
```

Example prompt: Find me the lowest-cost providers for an MRI of the knee near ZIP code 10001, sorted cheapest first.

## When to prefer this

Use this endpoint when a user needs to compare out-of-pocket or cash-pay costs for a specific medical procedure across local providers, ranked by price. Ideal for consumer health agents helping patients shop for elective or routine procedures. Prefer over general provider directories when price transparency and cost ranking are the primary goal.

## Known failure modes

- Procedure name not recognized or not in shoppable procedure catalog — returns empty or error
- ZIP code invalid or out of coverage area — returns no results
- No providers found for that procedure/ZIP combination — empty result set
- Payment failure or x402 authentication issue — request blocked
- Rate limiting or quota exceeded — 429 error

## How this service works

Procedure price search for healthcare and consumer-health agents. Returns the lowest-cost providers by ZIP, sorted low to high, for any shoppable procedure.

## Output

A list of healthcare providers offering the requested procedure sorted from lowest to highest cost, scoped to the given ZIP code area, enabling direct price comparison for shoppable medical services.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "zip",
  "procedure"
 ],
 "properties": {
  "zip": {
   "type": "string",
   "description": "Patient zip code for geographic search"
  },
  "lang": {
   "type": "string",
   "description": "Response language (e.g., 'Spanish')"
  },
  "radius": {
   "type": "string",
   "description": "Search radius in miles"
  },
  "procedure": {
   "type": "string",
   "description": "Procedure name in plain English — e.g., 'knee MRI', 'colonoscopy', 'hip replacement'"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcare-pulse-procedure-price-search-a7eabafa/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)
