# HUD Fair Market Rent (FMR) Lookup

> HUD Fair Market Rent (FMR) Lookup 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 HUD annual Fair Market Rent by metro area and bedroom count, signed with ML-DSA-65 for verifiability

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/hud-fair-market-rent
- 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/hud-fair-market-rent-fmr-lookup-41e3f639
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MxaOi5IrAlHT0G5DZWWe-

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 hud-fair-market-rent-fmr-lookup-41e3f639
```

Example prompt: What's the HUD fair market rent for a 2-bedroom unit in Chicago? I need it for Section 8 compliance underwriting and want the cryptographically signed result I can verify.

## When to prefer this

Use this endpoint when you need authoritative, cryptographically verifiable HUD Fair Market Rent figures for a specific metro area and bedroom size — particularly for affordable housing underwriting, LIHTC rent limit compliance, Section 8 voucher eligibility checks, or any workflow requiring audit-grade provenance on government rent data.

## Known failure modes

- Invalid or unrecognized metro area name — returns error or no match
- Bedroom count outside 0–4 range — schema validation error
- HUD dataset not yet updated for current year — may return prior year's FMR
- Network or payment authorization failure — no data returned

## 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 underwriting affordable housing, Section 8 compliance, or LIHTC rent limits. Returns FMR by metro area and bedroom count. Example: Chicago 2BR FMR $1,685. Source: HUD annual FMR dataset

## Output

Returns the HUD-published Fair Market Rent dollar amount for the specified metro area and bedroom count (0–4 bedrooms), sourced from the annual HUD FMR dataset. The response is signed with ML-DSA-65 and includes a cryptographic receipt verifiable at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "metro_area": {
   "type": "string",
   "description": "Request parameter: metro area"
  },
  "bedroom_count": {
   "type": "number",
   "maximum": 4,
   "minimum": 0,
   "description": "Request parameter: bedroom count"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hud-fair-market-rent-fmr-lookup-41e3f639/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)
