# HomePulse Home Improvement ROI Analyzer

> HomePulse Home Improvement ROI Analyzer 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).

Analyzes a home improvement project and returns estimated costs, value added, DIY-vs-contractor guidance, and a parts list

## Facts

- Endpoint: GET https://homepulse-seven.vercel.app/api/home/improve
- 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-improvement-roi-analyzer-a8aa6892
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lPeTdhIwnPyhsz_n9zrL4

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-improvement-roi-analyzer-a8aa6892
```

Example prompt: Can you run a home improvement ROI analysis on adding a mid-range kitchen remodel to my 3-bedroom house in Austin, TX — I want to know the estimated cost, how much value it'll add, whether I should DIY or hire a contractor, and what parts I'd need?

## When to prefer this

Choose this endpoint when you need a comprehensive home improvement analysis that combines cost estimation, resale value impact, DIY feasibility guidance, and a materials list in a single call. Prefer this over the resale-ROI-only endpoint when the user also needs contractor vs. DIY guidance and a parts list, not just NAR Cost vs. Value data.

## Known failure modes

- Unrecognized or ambiguous project type returns an error or generic response
- Missing location may reduce accuracy of cost and value estimates
- Extremely niche or custom projects may yield low-confidence estimates
- API returns 402 if payment header is missing or USDC payment fails
- Rate limiting may occur for high-frequency callers

## How this service works

Home improvement cost and ROI estimate for any project (kitchen remodel, deck addition, bathroom remodel, and more): project cost, resale value added, DIY-vs-contractor guidance, and a parts/materials list. For homeowner and renovation agents. Takes a project and optional home value.

## Output

Returns a structured analysis including estimated project cost, estimated value added to the home, calculated ROI percentage, a DIY-vs-contractor recommendation with rationale, and an itemized parts/materials list for the specified home improvement project.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "project"
 ],
 "properties": {
  "zip": {
   "type": "string",
   "description": "Legacy alias for location (ZIP/postal code)"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "country": {
   "type": "string",
   "description": "Country (e.g. US, UK, CA, DE, AU) — sets currency and permit/planning-permission terminology"
  },
  "project": {
   "type": "string",
   "description": "Project type (e.g. kitchen-remodel, deck-addition, new-roof)"
  },
  "location": {
   "type": "string",
   "description": "Postal code or city (e.g. 90210, M5V 2T6, SW1A, Berlin)"
  },
  "home_value": {
   "type": "integer",
   "description": "Current estimated home value, in local currency"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/homepulse-home-improvement-roi-analyzer-a8aa6892/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)
