# HomePulse Home Value Estimator

> HomePulse Home Value Estimator is a paid API for AI agents from homepulse-seven.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns an AI-generated home value estimate with comparable sales data and market-trend analysis for a given property.

## Facts

- Endpoint: GET https://homepulse-seven.vercel.app/api/home/value
- 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/homepulse-home-value-estimator-c1f9561a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L5Tq7LAz8eVUSsj9f3VTV

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 homepulse-home-value-estimator-c1f9561a
```

Example prompt: Can you give me a home value estimate for 42 Maple Street, Austin TX 78701, including what comparable homes have sold for recently and whether the market there is trending up or down?

## When to prefer this

Use this endpoint when a homeowner, buyer, or real estate agent needs a data-backed property value estimate paired with comparable sales and local market trend context — especially when the goal is to inform a listing price, purchase offer, or portfolio assessment.

## Known failure modes

- Property address not found or unrecognized — returns an error or no estimate
- Insufficient comparable sales data in area — reduced confidence estimate or error
- Missing required address parameter — returns validation error
- Payment not provided or insufficient — returns 402 Payment Required
- Rate limit exceeded — returns 429 error

## How this service works

Home value estimate / what is my house worth: an AVM-style value estimate with comparable sales and market-trend analysis. For homeowner and real-estate agents. Takes an address and/or ZIP; returns an estimated value range, recent comps, and local housing-market direction.

## Output

Returns a monetary home value estimate, a list of comparable recent sales in the area, and a market-trend analysis indicating whether prices in the local market are rising, stable, or declining.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "zip": {
   "type": "string",
   "description": "Legacy alias for location (ZIP/postal code)"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "address": {
   "type": "string",
   "description": "Street address"
  },
  "country": {
   "type": "string",
   "description": "Country (e.g. US, UK, CA, DE, AU) — selects the right local property portals"
  },
  "location": {
   "type": "string",
   "description": "Postal code or city (e.g. 90210, M5V 2T6, SW1A, Berlin)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/homepulse-home-value-estimator-c1f9561a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from homepulse-seven.vercel.app](https://www.zero.xyz/host/homepulse-seven.vercel.app/llms.txt)
