zeropointrepo/zillow-skills · Archived

zillow-zestimate

Looks up the Zillow Zestimate, rent Zestimate, tax assessed value and last sold price of a US property via the zillapi API.

First seen Aug 18, 2026

Installation

$ npx skills add zeropointrepo/zillow-skills --skill zillow-zestimate

Summary

  • Looks up the Zillow Zestimate, rent Zestimate, tax assessed value and last sold price of a US property via the zillapi API.
  • Use when the user asks what a home is worth, its Zestimate, rental estimate, valuation or price anchor, giving an address, zpid or zillow.com link.
  • Do not use for listing searches, photos or school data (zillow-full covers those), or when an address merely appears in passing without a valuation request.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Also in this package

Other skills from zeropointrepo/zillow-skills.

npx skills add zeropointrepo/zillow-skills

Browse all from zeropointrepo/zillow-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 6
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.1.0
LicenseMIT-0
Declared agents clawdbot
More metadata
openclaw
{"primaryEnv":"ZILLAPI_KEY","homepage":"https:\/\/zillapi.com","requires":{"env":["ZILLAPI_KEY"]}}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,521 B
  • docs SUMMARY.md 452 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

zillow-zestimate

Single-purpose valuation skill. Fire only on an explicit valuation request. When the intent is ambiguous, confirm with the user first: calls consume credits.

If the user also wants photos, schools, agent contact or price history, use zillow-full instead.

Tool

get_zestimate (1 credit)

Pass either zpid (preferred: cheaper, cache-served) or address. With only address, the handler resolves the zpid first.

Returns:

{
  "data": {
    "zestimate": 489500,
    "rent_zestimate": 2800,
    "tax_assessed_value": 410000,
    "last_sold_price": 375000,
    "currency": "USD"
  }
}

Authentication

Set ZILLAPIKEY to your Zillapi API key (format zk...).

export ZILLAPI_KEY="zk_..."

Free key at <https://zillapi.com/signup>;: 100 credits, no card required. Plans and current prices: <https://zillapi.com/pricing/>;. Failed calls are not charged.

Errors

The handler returns dicts, never raises:

  • {"error": "auth", ...}: ZILLAPI_KEY missing or invalid
  • {"error": "HTTP 404", ...}: property not found
  • {"error": "HTTP 429", ...}: rate limited, back off and retry
  • {"error": "network", ...}: DNS or connection failure

Reference

Trademark

Zillapi is an independent service and is not affiliated with, endorsed by, or sponsored by Zillow Group, Inc. "Zillow" and "Zestimate" are registered trademarks of Zillow Group, Inc.