# PropPulse Investment Property Analysis

> PropPulse Investment Property Analysis is a paid API for AI agents from proppulse-gules.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Analyzes an investment property to compute cap rate, cash-on-cash return, 5-year financial projection, and an overall investment grade

## Facts

- Endpoint: GET https://proppulse-gules.vercel.app/api/prop/invest
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-investment-property-analysis-0b9a8183
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DHnkwFDDHxFCrjT_oJBZ9

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-investment-property-analysis-0b9a8183
```

Example prompt: Can you run an investment property analysis on 4521 Oak Street, Austin TX — asking price $385,000, expected monthly rent $2,800, and I'd be putting 20% down with a 7.1% mortgage rate? I want to see the cap rate, cash-on-cash return, 5-year projection, and the investment grade.

## When to prefer this

Use this endpoint when you need a comprehensive investment-focused analysis of a rental or income-producing property, particularly when you need cap rate, cash-on-cash return, and a multi-year projection in a single call. Prefer this over generic property valuation endpoints when the user's goal is evaluating ROI and investment viability rather than market value or affordability.

## Known failure modes

- Missing or invalid property price returns a 400 error
- Invalid or missing rental income data causes computation failure
- Insufficient financing parameters may prevent cash-on-cash calculation
- Payment not processed returns a 402 Payment Required error
- Malformed address or unsupported property type may return an error

## How this service works

Rental property investment analysis and cap rate calculator: cap rate, cash-on-cash return, gross rent multiplier, annual NOI, break-even occupancy, 5-year appreciation projection, and investment grade for any rental property. For real-estate-investor agents.

## Output

Returns a structured analysis including the property's cap rate (net operating income / property value), cash-on-cash return (annual pre-tax cash flow / total cash invested), a 5-year financial projection showing cumulative returns and equity build, and an overall investment grade rating summarizing whether the property is a strong, moderate, or weak investment opportunity.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar"
      },
      "rent": {
       "type": "string",
       "description": "2200 (expected monthly rent)"
      },
      "type": {
       "type": "string"
      },
      "price": {
       "type": "string"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "location": {
       "type": "string",
       "description": "Phoenix, AZ | Manchester | Toronto"
      }
     }
    }
   },
   "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": {
  "verdict": "solid — above-average cap rate for Phoenix",
  "cap_rate": 6.2,
  "annual_noi": 16800,
  "cash_on_cash_return": 7.8,
  "gross_rent_multiplier": 13.3,
  "break_even_occupancy_pct": 72,
  "appreciation_5yr_estimate_pct": 18
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-investment-property-analysis-0b9a8183/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proppulse-gules.vercel.app](https://www.zero.xyz/host/proppulse-gules.vercel.app/llms.txt)
