# ClearCarePulse Procedure Price Search

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

Searches for the lowest-cost healthcare procedure providers near a given zip code, returning results sorted from lowest to highest price

## Facts

- Endpoint: GET https://clear-care-pulse.vercel.app/api/care/search
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcarepulse-procedure-price-search-744bf742
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eeFTSiY_XtpGZM2ASIct9

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-procedure-price-search-744bf742
```

Example prompt: Can you find me the cheapest places to get an MRI near zip code 10001, sorted from lowest to highest price?

## When to prefer this

Use this endpoint when a user needs to compare out-of-pocket or transparent pricing for a specific medical procedure across providers in a geographic area. Ideal for cost-conscious healthcare decisions where zip-code-based proximity and price ranking are the primary concerns.

## Known failure modes

- No providers found for the given procedure and zip code combination
- Invalid or unrecognized zip code returns an error or empty result
- Misspelled or ambiguous procedure name returns no results
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting or service unavailability on the Vercel deployment

## 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 specified procedure near the given zip code, ranked from lowest to highest price, including provider names, locations, and their procedure costs.

## 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": [
      "procedure",
      "zip"
     ],
     "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'"
      }
     }
    }
   },
   "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-procedure-price-search-744bf742/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)
