zillow_home_values
Pack: zillow · Endpoint: https://gateway.pipeworx.io/zillow/mcp
Zillow Home Value Index (ZHVI) — monthly home value estimates as a time series. Returns observation_date + value pairs for the matching region (case-insensitive substring match on region name). Coverage: US metros, states, national.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
region | string | yes | Region name, e.g. “Los Angeles”, “California”, “United States”. Substring match. |
region_type | string | no | Optional disambiguator: metro | state | national |
from | string | no | Start date YYYY-MM-DD (default: 5y ago) |
to | string | no | End date YYYY-MM-DD (default: latest) |
Example call
Arguments
{
"region": "Los Angeles"
}
curl
curl -X POST https://gateway.pipeworx.io/zillow/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"zillow_home_values","arguments":{"region":"Los Angeles"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('zillow_home_values', {
"region": "Los Angeles"
});
More examples
{
"region": "California",
"region_type": "state",
"from": "2020-01-01",
"to": "2024-01-01"
}
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"properties": {
"error": {
"type": "string",
"enum": [
"no_match"
],
"description": "No region matching query has data"
},
"message": {
"type": "string",
"description": "Error message"
}
},
"required": [
"error",
"message"
]
},
{
"type": "object",
"properties": {
"error": {
"type": "string",
"enum": [
"ambiguous"
],
"description": "Multiple regions match query"
},
"message": {
"type": "string",
"description": "Error message"
},
"candidates": {
"type": "array",
"items": {
"type": "object",
"properties": {
"region_id": {
"type": "number",
"description": "Region ID"
},
"region_name": {
"type": "string",
"description": "Region name"
},
"region_type": {
"type": "string",
"description": "Region type (metro/state/national)"
},
"state_name": {
"type": [
"string",
"null"
],
"description": "State name if applicable"
}
}
}
}
},
"required": [
"error",
"message",
"candidates"
]
},
{
"type": "object",
"properties": {
"metric": {
"type": "string",
"description": "Metric type (zhvi)"
},
"region": {
"type": "object",
"properties": {
"region_id": {
"type": "number",
"description": "Region ID"
},
"region_name": {
"type": "string",
"description": "Region name"
},
"region_type": {
"type": "string",
"description": "Region type (metro/state/national)"
},
"state_name": {
"type": [
"string",
"null"
],
"description": "State name if applicable"
}
},
"required": [
"region_id",
"region_name",
"region_type",
"state_name"
]
},
"from": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
},
"to": {
"type": "string",
"description": "End date (YYYY-MM-DD)"
},
"observations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"observation_date": {
"type": "string",
"description": "Date of observation"
},
"value": {
"type": [
"number",
"null"
],
"description": "Home value estimate"
}
}
}
}
},
"required": [
"metric",
"region",
"from",
"to",
"observations"
]
}
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"zillow": {
"url": "https://gateway.pipeworx.io/zillow/mcp"
}
}
}
See Getting Started for client-specific install steps.