# PropPulse Rental Market Intelligence

> PropPulse Rental Market Intelligence is a paid API for AI agents from proppulse.theaslangroupllc.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-16).

Returns global rental market data including asking rent levels and trends, vacancy rates, seasonality, rent-control flags, short-term rental metrics and regulations, budget/hostel rates, and investor gross yield.

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/rental-market
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-rental-market-intelligence-3d62049f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kJaeM4gTM9Pgg6j5tGaeK

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-rental-market-intelligence-3d62049f
```

Example prompt: What's the rental market like in Nashville right now — asking rents, vacancy tightness, whether there's rent control, and if I bought a place for $350,000 what gross yield could I expect?

## When to prefer this

Use this endpoint when you need a comprehensive rental market snapshot for a specific location, especially when combining rent trend, vacancy, rent-control status, STR regulation, and investor yield in a single call. Prefer it over general housing market endpoints when the focus is rental income potential or tenant/landlord market conditions rather than home sale prices. Chain with /api/prop/rentbuy for rent-vs-buy decisions or homepulse endpoints for complementary listing data.

## Known failure modes

- Location not recognized or too ambiguous — endpoint returns error or empty result
- Insufficient rental data for the requested area — partial result with low-confidence flags
- Missing required location parameter — returns 400-level error
- Purchase price not provided — gross yield field omitted from response
- STR regulation data unavailable for jurisdiction — flag returns null or unknown

## How this service works

Global rental-market intelligence: asking rent level/trend, vacancy tightness, seasonality, rent-control flag, short-term-rental read + regulation flag, budget/hostel rates, investor gross yield when purchase_price given. Chains with /api/prop/rentbuy and homepulse rent/findpulse rental.

## Output

Returns a structured rental market report including current asking rent and recent trend direction, vacancy tightness score, seasonality pattern, rent-control applicability flag, short-term rental demand read and regulation status, budget/hostel rate benchmarks, and (when purchase_price is provided) investor gross yield percentage.

## 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"
      },
      "angle": {
       "type": "string",
       "description": "renter | investor | str | budget (default overview)"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "bedrooms": {
       "type": "string"
      },
      "location": {
       "type": "string",
       "description": "Manchester | Austin, TX | Bengaluru"
      },
      "purchase_price": {
       "type": "string",
       "description": "350000 (enables gross-yield math)"
      }
     }
    }
   },
   "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": {
  "trend": "rising",
  "rent_control": "unknown",
  "gross_yield_pct": 7.2,
  "asking_rent_monthly_mid": 2100
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-rental-market-intelligence-3d62049f/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)
