---
name: stableestate.dev
description: stableestate.dev provides a rent valuation API that returns an estimated monthly rent, a low/high confidence range, and comparable rental listings for a specified residential property. It uses nearby active and inactive rental comps with distance and correlation scoring to support the estimate.
host: stableestate.dev
---

# stableestate.dev

stableestate.dev is a single-purpose real estate data host focused exclusively on rental valuation. It serves agents, applications, and workflows that need a data-backed rent estimate for a specific property address, with supporting comparable listings. It does not cover sale price estimation, AVM outputs, or bulk portfolio operations.

## When to use this host

Use stableestate.dev when an agent needs a rent estimate for a single, specific property address, including supporting comparable listings with correlation scores and distances. Do not use it for sale price or AVM estimates — those require a separate sale valuation endpoint not available on this host. Do not use it for bulk or portfolio-level rent estimation, as each call requires individual payment and input. If the task involves property sale pricing, market trend analysis, or non-residential property types, this host is not appropriate.

## Capabilities

### Rental Valuation

Estimates monthly rent for a given property using comparable rental listings, returning a point estimate, a low/high range, and scored comps with distance and price data.

- **`fetch-rent-valuation`** — Returns an estimated monthly rent, low/high range, and comparable rental listings for a given property address and attributes.

## Skill reference

### `fetch-rent-valuation`

**Rent Valuation API** — Returns an estimated monthly rent, low/high range, and comparable rental listings for a given property address and attributes.

*Use when:* Use when an agent needs a data-backed rent estimate for a specific property, including comparable active and inactive rental listings with prices, distances, and correlation scores.

*Not for:* Do not use for sale price or AVM (automated valuation model) estimates; use a separate sale valuation endpoint instead. Not suitable for bulk portfolio rent estimation without per-call payment.

**Inputs:**

- `address` (string) — Full street address of the subject property.
- `latitude` (number) — Latitude coordinate of the subject property. Can be used instead of or alongside address.
- `longitude` (number) — Longitude coordinate of the subject property. Can be used instead of or alongside address.
- `propertyType` (string) — Type of property. Allowed values: Single Family, Condo, Townhouse, Manufactured, Multi-Family, Apartment.
- `bedrooms` (number) — Number of bedrooms in the subject property.
- `bathrooms` (number) — Number of bathrooms in the subject property.
- `squareFootage` (number) — Interior square footage of the subject property.
- `maxRadius` (number) — Maximum search radius in miles for finding comparable rentals.
- `daysOld` (integer) — Maximum age in days of comparable rental listings to include. Min 1.
- `compCount` (integer) — Number of comparable rentals to return. Min 5, max 25.

**Returns:** Returns rent=6000, rentRangeLow=4740, rentRangeHigh=7270, a subjectProperty object with resolved address fields, and a comparables array of up to 12 nearby rental listings each with price, distance, and correlation score.

**Example:** `{"address": "2001 Larkin St, San Francisco, CA 94109", "propertyType": "Apartment", "bedrooms": 2, "bathrooms": 1, "squareFootage": 980, "maxRadius": 3.5, "daysOld": 45, "compCount": 12}`

---
