# PetPulse Vet Cost Estimator

> PetPulse Vet Cost Estimator is a paid API for AI agents from petpulse-alpha.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns procedure cost estimates for veterinary care along with lower-cost alternatives and financing options for a given pet and procedure.

## Facts

- Endpoint: GET https://petpulse-alpha.vercel.app/api/pet/cost
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/petpulse-vet-cost-estimator-1ea7ff37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cJu-NGPivLJZz-prrs5MR

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 petpulse-vet-cost-estimator-1ea7ff37
```

Example prompt: How much does a dog tooth extraction typically cost for a 5-year-old Labrador, and are there any lower-cost alternatives or financing options I should know about?

## When to prefer this

Use this endpoint when a pet owner or pet-care agent needs to understand the financial scope of a veterinary procedure before committing to treatment — especially when the user wants to compare costs, explore cheaper alternatives, or find financing. Prefer this over general web search when structured, actionable cost breakdowns with financing context are needed.

## Known failure modes

- Unknown or misspelled procedure name returns no results or generic estimate
- Unsupported pet species may return limited or no data
- Very rare procedures may have insufficient pricing data
- Missing required parameters (e.g. procedure) returns an error
- Network timeout or service unavailability returns 5xx error

## How this service works

Vet cost estimator / pet procedure price check for pet-owner and pet-care agents. Returns cost ranges for a vet procedure by region, questions to ask the vet, lower-cost alternatives, and financing options (CareCredit). Pet-info guide, not a binding quote.

## Output

Returns a structured response including estimated cost ranges for the requested veterinary procedure, lower-cost or alternative treatment options, and available financing or payment plan options relevant to the pet and procedure specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "procedure"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language (default en)"
  },
  "region": {
   "type": "string",
   "description": "Region"
  },
  "species": {
   "type": "string",
   "description": "Species (dog, cat, etc.)"
  },
  "procedure": {
   "type": "string",
   "description": "Procedure name"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/petpulse-vet-cost-estimator-1ea7ff37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from petpulse-alpha.vercel.app](https://www.zero.xyz/host/petpulse-alpha.vercel.app/llms.txt)
