# Financial Data x402 – Housing Market

> Financial Data x402 – Housing Market is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the latest U.S. housing market indicators including 30-year mortgage rate, housing starts, building permits, and Case-Shiller home price index YoY change.

## Facts

- Endpoint: GET https://x402financialdata.com/housing-market
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-housing-market-fc7fa6b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lgd2LkaC2H58xxKtcKN2y

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 financial-data-x402-housing-market-fc7fa6b7
```

Example prompt: What does the US housing market look like right now — give me the current 30-year mortgage rate, housing starts, building permits, and year-over-year home price change.

## When to prefer this

Choose this endpoint when you need a quick, self-contained snapshot of the most important U.S. housing market metrics in a single call, without managing API keys or subscriptions. It is ideal for agents that need pay-per-call access via USDC over the x402 protocol, covering mortgage rates, construction activity, and home price appreciation in one response.

## Known failure modes

- Payment not provided or insufficient USDC — returns 402 Payment Required
- Upstream data source temporarily unavailable — series appears in failed_series array
- Malformed request parameters — returns 400 Bad Request
- Network timeout or provider downtime — returns 5xx error

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object with an as_of date and the latest values for: 30-year mortgage rate (%), housing starts (SAAR in thousands), building permits (SAAR in thousands), and Case-Shiller home price index YoY %. Each metric includes its own observation date. A failed_series array lists any data series that could not be retrieved.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-31",
  "failed_series": [],
  "mortgage_rate_30yr_pct": {
   "date": "2026-07-30",
   "value": 6.66
  },
  "housing_starts_saar_thousands": {
   "date": "2026-06-01",
   "value": 1427
  },
  "building_permits_saar_thousands": {
   "date": "2026-06-01",
   "value": 1374
  },
  "case_shiller_home_price_index_yoy_pct": {
   "date": "2026-05-01",
   "value": 2.15,
   "compared_to_date": "2025-05-01"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-housing-market-fc7fa6b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
