# PropPulse Home Affordability Calculator

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

Calculates maximum and recommended home purchase price, true monthly cost, and debt-to-income ratio based on income, debt, and location for any global market

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/afford
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-home-affordability-calculator-5e9ef002
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_45CBY-mNUO1dbRAbbYJ0d

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 proppulse-home-affordability-calculator-5e9ef002
```

Example prompt: I earn $95,000 a year, have $800 in monthly debt payments, and I'm looking to buy a home in Austin, Texas — can you tell me the maximum and recommended purchase price I can afford, what my true monthly cost would be, and whether my debt-to-income ratio is healthy?

## When to prefer this

Use this endpoint when a user wants to understand their home purchase budget based on their personal financial situation — income, existing debt, and a target location. Ideal for homebuyer agents and personal finance assistants needing a quick, location-aware affordability snapshot with DTI analysis rather than a full mortgage application or property-specific valuation.

## Known failure modes

- Missing or invalid income parameter returns error
- Unsupported or unrecognized location returns computation failure
- Negative or unrealistic debt values cause validation error
- Interest rate out of plausible range may return error or warning
- Payment failure (402) if USDC balance insufficient

## How this service works

Home affordability calculator (how much house can I afford): max and recommended purchase price, true monthly cost, and debt/income ratio against income and debt for any global location. For homebuyer and personal-finance agents.

## Output

Returns maximum purchase price, recommended purchase price, estimated true monthly ownership cost (including mortgage, taxes, insurance, etc.), and debt-to-income ratio calculated against the buyer's income and existing debt for the specified location

## 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": {
      "zip": {
       "type": "string",
       "description": "legacy alias for location, implies country=US"
      },
      "debt": {
       "type": "string",
       "description": "800 (monthly debt payments)"
      },
      "down": {
       "type": "string",
       "description": "80000 (down payment)"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar"
      },
      "income": {
       "type": "string",
       "description": "120000 (annual gross household income, local currency)"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "location": {
       "type": "string",
       "description": "Manchester | Bengaluru | 78701"
      }
     }
    }
   },
   "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": {
  "dti_ratio": 0.36,
  "loan_type": "Conventional 30yr",
  "loan_amount": 380000,
  "rate_assumed": 6.85,
  "monthly_payment": 2840,
  "recommended_price": 460000,
  "max_purchase_price": 520000
 }
}
```

## More

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