# StableEstate Rent Estimate

> StableEstate Rent Estimate is a paid API for AI agents from stableestate.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a rent estimate for a property along with comparable rental listings used to derive the valuation

## Facts

- Endpoint: POST https://stableestate.dev/api/valuations/rent
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableestate-dev-8eea5039
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__rhRlgA6ZQdDynMoxSOk0

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 stableestate-dev-8eea5039 -d '<json body>'
```

Example prompt: What's a fair monthly rent estimate for a 3-bedroom, 2-bathroom house at 482 Oak Street, Austin TX 78701, around 1800 square feet? Include comparable rentals nearby.

## When to prefer this

Use this endpoint when you need a data-driven rent estimate for a specific residential property backed by real comparable rental data. Prefer this over general market statistics when you need property-level granularity with supporting comps, not just zip-code-level trends.

## Known failure modes

- Property address not found or unrecognized — returns 404 or empty result
- Insufficient comparable rentals in the area to produce a reliable estimate
- Invalid or missing required fields (address, zip) — returns 400 validation error
- Property type not supported (e.g. commercial) — returns error or null estimate
- Payment failure via x402 protocol — returns 402 Payment Required

## How this service works

Get rent estimate for a property with comparable rentals

## Output

Returns an estimated monthly rent figure for the specified property along with a set of comparable rental listings (address, rent price, bed/bath count, square footage) that were used to derive the valuation, typically including a confidence range or score.

## Example request

```json
{
 "city": "Austin",
 "limit": 25,
 "state": "TX",
 "offset": 0,
 "radius": 1,
 "status": "Active",
 "address": "482 Oak Street",
 "maxSqft": 1900,
 "minSqft": 1700,
 "zipCode": "78701",
 "bedrooms": 3,
 "bathrooms": 2,
 "propertyType": "Single Family"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string"
  },
  "daysOld": {
   "type": "integer",
   "maximum": 9007199254740991,
   "minimum": 1
  },
  "bedrooms": {
   "type": "number"
  },
  "latitude": {
   "type": "number"
  },
  "bathrooms": {
   "type": "number"
  },
  "compCount": {
   "type": "integer",
   "maximum": 25,
   "minimum": 5
  },
  "longitude": {
   "type": "number"
  },
  "maxRadius": {
   "type": "number"
  },
  "propertyType": {
   "enum": [
    "Single Family",
    "Condo",
    "Townhouse",
    "Manufactured",
    "Multi-Family",
    "Apartment"
   ],
   "type": "string"
  },
  "squareFootage": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableestate-dev-8eea5039/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableestate.dev](https://www.zero.xyz/host/stableestate.dev/llms.txt)
