# StableEstate Rental Apartment Search

> StableEstate Rental Apartment Search 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).

Search rental apartment listings using MLS data by location and filters

## Facts

- Endpoint: POST https://stableestate.dev/api/apartments/search
- 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-548bd87e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6T1H5vZ0OmztWTi-AScBT

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-548bd87e -d '<json body>'
```

Example prompt: Find me rental apartments in Austin, TX — ideally 2 bedrooms, under $2,000/month. Search MLS listings and show me what's available.

## When to prefer this

Use this endpoint when you need to search for rental (not for-sale) apartment listings backed by MLS data. Prefer this over for-sale property search when the user explicitly wants rentals. Use the rent estimate endpoint if you need a price estimate rather than active listings.

## Known failure modes

- No listings found for the specified location or filters — returns empty result set
- Invalid or unrecognized location identifier — returns error
- Overly restrictive filters yield zero results — empty list returned
- Payment not included or insufficient — x402 payment required error
- Rate limiting or service unavailability — HTTP 429 or 503

## How this service works

Search rental apartment listings powered by MLS data

## Output

A list of rental apartment listings matching the search criteria, drawn from MLS data, including details such as address, price, number of bedrooms and bathrooms, square footage, and listing metadata.

## Example request

```json
{
 "city": "Austin",
 "limit": 25,
 "state": "TX",
 "offset": 0,
 "bedrooms": 2,
 "maxPrice": 2000,
 "propertyType": "Apartment"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "limit": {
   "type": "integer",
   "default": 25,
   "maximum": 500,
   "minimum": 1
  },
  "state": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2
  },
  "offset": {
   "type": "integer",
   "default": 0,
   "maximum": 9007199254740991,
   "minimum": 0
  },
  "radius": {
   "type": "number",
   "maximum": 100,
   "minimum": 0
  },
  "status": {
   "enum": [
    "Active",
    "Inactive"
   ],
   "type": "string",
   "default": "Active"
  },
  "address": {
   "type": "string"
  },
  "daysOld": {
   "type": "integer",
   "maximum": 9007199254740991,
   "minimum": 1
  },
  "maxSqft": {
   "type": "number",
   "exclusiveMinimum": 0
  },
  "minSqft": {
   "type": "number",
   "exclusiveMinimum": 0
  },
  "zipCode": {
   "type": "string"
  },
  "bedrooms": {
   "type": "integer",
   "maximum": 9007199254740991,
   "minimum": 0
  },
  "latitude": {
   "type": "number"
  },
  "location": {
   "type": "string"
  },
  "maxPrice": {
   "type": "number",
   "exclusiveMinimum": 0
  },
  "minPrice": {
   "type": "number",
   "exclusiveMinimum": 0
  },
  "bathrooms": {
   "type": "number",
   "minimum": 0
  },
  "longitude": {
   "type": "number"
  },
  "listingType": {
   "type": "string"
  },
  "minBedrooms": {
   "type": "integer",
   "maximum": 9007199254740991,
   "minimum": 0
  },
  "minBathrooms": {
   "type": "number",
   "minimum": 0
  },
  "propertyType": {
   "enum": [
    "Single Family",
    "Condo",
    "Townhouse",
    "Manufactured",
    "Multi-Family",
    "Apartment"
   ],
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableestate-dev-548bd87e/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)
