# US Home Price Data API (National & Metro)

> US Home Price Data API (National & Metro) is a paid API for AI agents from property.memoryapi.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns US home price data including national median (FRED) or metro-level Zillow ZHVI, with year-over-year change and 12-month historical series.

## Facts

- Endpoint: GET https://property.memoryapi.org/x402/property/prices
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/property-memoryapi-org-20adc698
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jGpCIOJcAzZLZyGo6_HcD

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 property-memoryapi-org-20adc698
```

Example prompt: What's the current median home price for the Austin metro area, and how has it changed over the last 12 months compared to the national figure?

## When to prefer this

Use this endpoint when you need current US home price levels or trends — either at the national level (FRED median) or for a specific metro (Zillow ZHVI) — with YoY change and a 12-month history series. Prefer this over raw FRED or Zillow APIs when you need a unified, pre-normalized response without managing multiple data source integrations.

## Known failure modes

- Unsupported or unrecognized metro area name returns an error or empty result
- FRED or Zillow data source temporarily unavailable causing fetch failure
- Missing required geographic parameter returns a validation error
- Data lag: most recent month may not yet be available from upstream sources

## How this service works

U.S. real estate intelligence — Zillow home price indices, FRED housing market indicators, and rental data. Pay-per-request via x402 protocol on Base mainnet.

## Output

Returns the current home price (national median from FRED or metro-level ZHVI from Zillow), the year-over-year percentage change, and a 12-month historical price series for the requested geographic scope.

## Example request

```json
{
 "metro": "Austin",
 "dataSource": "zillow"
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "type": "national",
  "source": "FRED MSPUS",
  "history": [
   {
    "date": "2024-01-01",
    "value": 408000
   }
  ],
  "success": true,
  "current_value": 425000,
  "yoy_change_pct": 4.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/property-memoryapi-org-20adc698/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from property.memoryapi.org](https://www.zero.xyz/host/property.memoryapi.org/llms.txt)
