# PropPulse Housing Market Analysis

> PropPulse Housing Market Analysis is a paid API for AI agents from proppulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns buyer-vs-seller conditions, median price, year-over-year price change, days on market, and months of inventory for any global location

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/market
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-housing-market-analysis-5013a67a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0KfYDGXg5a0l8R6MNq8PA

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 proppulse-housing-market-analysis-5013a67a
```

Example prompt: What are the current housing market conditions in Portland, Oregon — is it a buyer's or seller's market, and what's the median price, days on market, and year-over-year price change?

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of housing market conditions for a specific location, including both demand-side signals (days on market, buyer/seller balance) and price trends (median price, YoY change, inventory). Prefer this over generic web search when structured, machine-readable real estate metrics are needed for homebuyers, sellers, or agents evaluating market timing.

## Known failure modes

- Location not recognized or too vague — returns error or no data
- Insufficient market data for rural or international locations
- Rate limit or payment failure for x402 protocol (0.1 USDC per call)
- Stale data if market has not been recently indexed for the requested area

## How this service works

Housing market analysis and home price trends: buyer-vs-seller conditions, median price, year-over-year price change, days on market, and months of inventory for any global location. For homebuyer, seller, and real-estate agents.

## Output

Returns a structured report including buyer-vs-seller market classification, median home price, year-over-year price percentage change, average days on market, and months of available inventory for the specified location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "zip": {
       "type": "string",
       "description": "legacy alias for location, implies country=US"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "location": {
       "type": "string",
       "description": "Manchester | 78701 | Bengaluru | Toronto"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "location": "78701",
  "market_type": "seller's market",
  "median_price": 3850000,
  "country_scope": "US",
  "days_on_market": 42,
  "inventory_months": 2.1,
  "price_change_yoy_pct": 4.2,
  "appreciation_10yr_annual_pct": 6.8
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-housing-market-analysis-5013a67a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proppulse.theaslangroupllc.com](https://www.zero.xyz/host/proppulse.theaslangroupllc.com/llms.txt)
