# HomePulse Rental Market Analysis

> HomePulse Rental Market Analysis is a paid API for AI agents from homepulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns local rent price ranges, market trends, and official government fair-market-rent benchmarks (US HUD FMR) for a given location and bedroom count

## Facts

- Endpoint: GET https://homepulse.theaslangroupllc.com/api/home/rent
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/homepulse-rental-market-analysis-c36e7773
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Du_9UHhWqpngZdcboK5ud

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-rental-market-analysis-c36e7773
```

Example prompt: What's the typical rent range for a 2-bedroom apartment in Austin, TX 78701, and does it match the HUD fair market rent benchmark?

## When to prefer this

Use this endpoint when a user needs current rental price ranges, rent trend direction, or official HUD Fair Market Rent benchmarks for a specific location. Ideal for renters evaluating if a listed price is fair, landlords setting competitive rents, or real estate agents advising clients. Prefer this over generic web search when structured, location-scoped rent data with government benchmarks is needed.

## Known failure modes

- Location not found or ambiguous — returns error if postal code or city cannot be resolved
- No HUD FMR data available for non-US jurisdictions — benchmark field may be null or absent
- Missing required location parameters (postal code or city) — returns 400-level error
- Unsupported country or region — limited data availability outside major markets
- Stale or unavailable market data for very rural or low-population areas

## How this service works

Rental market analysis / how much is rent for any country: price ranges, rent trends, and official government fair-market-rent benchmarks where available (US HUD FMR). For renter and real-estate agents. Takes a location (postal code and/or city) plus optional bedrooms, state/province, and country; returns local rent ranges, market direction, and official benchmarks when the jurisdiction has one.

## Output

Returns local rent price ranges (low, median, high), market direction (rising, stable, falling), and official government HUD Fair Market Rent benchmarks where available, all scoped to the provided location and bedroom count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "zip": {
   "type": "string",
   "description": "Legacy alias for location (ZIP/postal code)"
  },
  "city": {
   "type": "string",
   "description": "city"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "state": {
   "type": "string",
   "description": "State/province; 2-letter US state code required for HUD FMR data"
  },
  "county": {
   "type": "string",
   "description": "County name hint for HUD FMR matching (US only)"
  },
  "country": {
   "type": "string",
   "description": "Country (e.g. US, UK, CA, DE, AU) — HUD FMR only applies when country is US/unspecified"
  },
  "bedrooms": {
   "type": "integer",
   "description": "bedrooms"
  },
  "location": {
   "type": "string",
   "description": "Postal code or city (e.g. 90210, M5V 2T6, SW1A)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/homepulse-rental-market-analysis-c36e7773/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from homepulse.theaslangroupllc.com](https://www.zero.xyz/host/homepulse.theaslangroupllc.com/llms.txt)
