# WealthPulse Home Affordability Calculator

> WealthPulse Home Affordability Calculator is a paid API for AI agents from wealthpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Calculates maximum home purchase price based on income, debt, down payment, and DTI ratios, with current 30-year rate context and a buy-vs-wait recommendation

## Facts

- Endpoint: GET https://wealthpulse.theaslangroupllc.com/api/wealth/mortgage
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wealthpulse-home-affordability-calculator-e4d292c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8dmzATgyWUUAhGxoccDuL

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 wealthpulse-home-affordability-calculator-e4d292c0
```

Example prompt: I make $95,000 a year, have $800 in monthly debt payments, and can put $40,000 down — can you run a WealthPulse home affordability check and tell me the max purchase price using both front-end and back-end DTI, what the current 30-year rate looks like, and whether I should buy now or wait?

## When to prefer this

Use this endpoint when a user wants a quick, personalized home affordability snapshot that combines their specific income, debt, and down payment with live rate context and a qualitative buy-vs-wait signal — especially useful for pre-house-hunting budget setting or evaluating whether current rates make buying sensible right now. Prefer over generic mortgage calculators when you need DTI-split analysis (front-end vs back-end) in a single call.

## Known failure modes

- Missing required income parameter returns 400 error
- Down payment exceeding purchase price yields invalid scenario
- Negative debt values rejected with validation error
- Extreme DTI inputs outside normal bounds may return edge-case warnings
- Service unavailable if upstream rate data feed is down

## How this service works

How much house can I actually afford? Home-affordability calculator with max purchase price by front-end and back-end DTI, income, debt, and down payment, current 30yr rate context, and a buy-vs-wait call. For personal-finance and real-estate agents.

## Output

Returns the maximum home purchase price under front-end DTI constraints (typically 28%) and back-end DTI constraints (typically 36–43%), estimated monthly payment, current 30-year mortgage rate context, and a qualitative buy-vs-wait recommendation based on the borrower's financial profile and rate environment.

## 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",
     "properties": {
      "debt": {
       "type": "string",
       "description": "500 (existing monthly debt payments USD)"
      },
      "down": {
       "type": "string",
       "description": "60000 (down payment USD, required)"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | zh"
      },
      "income": {
       "type": "string",
       "description": "95000 (annual gross USD, required)"
      },
      "location": {
       "type": "string",
       "description": "Austin, TX (default: US)"
      }
     }
    }
   },
   "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "location": "Austin, TX",
  "disclaimer": "For informational purposes only. Not financial or legal advice. Consult a licensed mortgage professional and financial advisor before making home purchase decisions.",
  "amazon_link": "https://www.amazon.com/s?k=home+buying+guide&tag=pulsenetwork7-20",
  "buy_vs_wait": "buy",
  "rate_context": {
   "rate_trend": "stable",
   "rate_impact": "A 1% rate rise adds roughly $220/month at this loan size",
   "current_15yr": "6.10%",
   "current_30yr": "6.85%"
  },
  "affordability": {
   "down_payment_pct": "15.4%",
   "recommended_home_price": "$390,000",
   "max_home_price_stretched": "$420,000",
   "monthly_payment_estimate": "$2,240 (P&I)",
   "max_home_price_conservative": "$380,000"
  },
  "amazon_search": "home buying guide",
  "buy_vs_wait_reason": "Rates are stable and local rents exceed this monthly payment",
  "first_time_buyer_programs": [
   "FHA 3.5% down",
   "TSAHC down payment assistance"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wealthpulse-home-affordability-calculator-e4d292c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wealthpulse.theaslangroupllc.com](https://www.zero.xyz/host/wealthpulse.theaslangroupllc.com/llms.txt)
