← LiveDataLink Blog

Free home value and rent data for any US metro (Zillow ZHVI + ZORI via API)

Last updated: May 21, 2026

To get the typical home value or rent for a US market programmatically, use the Zillow Research indices: ZHVI (Zillow Home Value Index) for home values and ZORI (Zillow Observed Rent Index) for rents, both published free by metro and state. LiveDataLink hosts them behind four tools so an AI agent can ask "what is the typical home value in Austin?" in one call.

Find the market

Markets are identified by metro area or state. Call realestate_search with a name fragment to get the region and its latest typical home value.

{
  "method": "tools/call",
  "params": {
    "name": "realestate_search",
    "arguments": { "query": "Austin" }
  }
}

Get current home value and rent

realestate_home_values returns the latest ZHVI plus the value one year and five years ago and the percent change, so you get the trend, not just a number. realestate_rents does the same for ZORI asking rents. Both accept a metro/state name or a region id.

Chart the trend

realestate_trend returns the full monthly series (home value or rent) for a region, ready to chart or feed into a model. Useful for appreciation analysis, rent-vs-buy, or spotting markets that are cooling.

What this is and is not

ZHVI and ZORI are market-level indices: the typical value or rent across a metro or state, smoothed and seasonally adjusted. They are excellent for market trends and comparisons. They are not parcel-level valuations or comps for a specific address; for that you need a paid AVM or MLS feed. The strength here is free, nationwide, historical market data behind one API key.

FAQ

Where does the data come from?

Zillow Research publishes ZHVI and ZORI as free public datasets. LiveDataLink ingests the metro and state files and serves them through the realestate_* tools so agents can query them without downloading CSVs.

Can I get values for a specific street address?

No. These are metro and state level indices, not address-level estimates. Use them for market context (typical value, rent, and trend), not for appraising one home.

How current is it?

Call realestate_status for the latest month available; the store is refreshed from Zillow's monthly releases.

Last updated: May 21, 2026 · LiveDataLink home