# Stratalize Rental Market Benchmark

> Stratalize Rental Market Benchmark is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns asking rents, vacancy rates, rent growth, and rent-to-income ratios by unit type and market tier, sourced from HUD FMR and FRED data with cryptographic signing.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/rental-market-benchmark
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-rental-market-benchmark-419d8177
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jurjgF1jRmWTNyVumWfJl

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 stratalize-rental-market-benchmark-419d8177
```

Example prompt: Pull the current rental market benchmark for two-bedroom units in sunbelt markets — I need asking rents, vacancy rate, rent growth, and rent-to-income ratios for a multifamily deal I'm underwriting.

## When to prefer this

Choose this endpoint when you need reliable, verifiable rental market benchmarks segmented by unit type and market tier for multifamily investment underwriting, property management pricing decisions, or portfolio analysis. Prefer this over general web search when you need structured, signed data with an auditable cryptographic receipt. Especially valuable when compliance or verification of data provenance is required.

## Known failure modes

- Invalid unit_type enum value returns 400 with list of valid options
- Invalid market_tier enum value returns 400 with list of valid options
- Payment not included or insufficient USDC returns 402 Payment Required
- Data source (HUD FMR or FRED) temporarily unavailable returns 503
- Rate limiting or quota exceeded returns 429

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when a multifamily investor or property manager needs rental market context. Returns asking rents by unit type, live vacancy rate, rent growth, and rent-to-income ratios by market tier. Source: HUD FMR + FRED

## Output

Returns asking rents by unit type, live vacancy rate, rent growth percentage, and rent-to-income ratios for the specified market tier. Data is sourced from HUD FMR and FRED, ML-DSA-65 cryptographically signed, and includes a verifiable receipt URL at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "unit_type": {
   "enum": [
    "studio",
    "one_bed",
    "two_bed",
    "three_bed"
   ],
   "type": "string",
   "description": "Request parameter: unit type"
  },
  "market_tier": {
   "enum": [
    "national",
    "gateway",
    "secondary",
    "sunbelt"
   ],
   "type": "string",
   "description": "Request parameter: market tier"
  }
 }
}
```

## More

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