# StableEstate Random Property Records

> StableEstate Random Property Records 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 one or more random US property records, useful for sampling, testing, or exploring real estate data

## Facts

- Endpoint: POST https://stableestate.dev/api/properties/random
- 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-37e04c18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PXVu4l329ikINqNbfekBJ

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-37e04c18 -d '<json body>'
```

Example prompt: Pull me a random US property record from StableEstate — I want to see the address, ownership info, and tax history for whatever comes up.

## When to prefer this

Use this endpoint when you need a random sample of US property data without specifying a location — ideal for testing pipelines, seeding demos, or exploring the breadth of available property attributes. Choose this over the search or location-based endpoints when you don't have a specific address, zip code, or region in mind.

## Known failure modes

- No records returned if database is temporarily unavailable
- Payment failure if USDC balance insufficient (x402 protocol error)
- Rate limiting if too many calls made in quick succession
- Malformed request body returns 400 error

## How this service works

Get random property records from across the US

## Output

One or more randomly selected US property records including address, property attributes, tax history, and ownership information

## Example request

```json
{
 "limit": 5,
 "status": "Active"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 5,
   "maximum": 500,
   "minimum": 1
  }
 }
}
```

## More

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