zeropointrepo/zillow-skills · Archived

zillow-full

Complete Zillow property data toolkit via the zillapi API. Looks up any US property by address, zillow.com URL or zpid and returns price, Zestimate, rent Zestimate, photos, schools, taxes, price history and listing agent contact; also searches for sale, for rent and sold listings by location and filters. Use when the user asks about a specific US property, home values, Zestimates, real estate listings, rentals, comps or housing data, or pastes a zillow.com link and asks about it. Do not use whe…

First seen Aug 9, 2026

Installation

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

Summary

  • Complete Zillow property data toolkit via the zillapi API.
  • Looks up any US property by address, zillow.com URL or zpid and returns price, Zestimate, rent Zestimate, photos, schools, taxes, price history and listing agent contact; also searches for sale, for rent and sold listings by location and filters.
  • Use when the user asks about a specific US property, home values, Zestimates, real estate listings, rentals, comps or housing data, or pastes a zillow.com link and asks about it.
  • Do not use when an address appears incidentally (signatures, unrelated documents) or the conversation is abstract real estate talk with no specific property or search 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 3,562 B
  • docs SUMMARY.md 679 B

History

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

SKILL.md

zillow-full

Nine tools over the Zillapi REST API. Every call consumes credits, so fire only when the request is genuinely about a specific property or listing search. When intent is ambiguous, confirm with the user before calling.

Tools

Tool Credits Use for
lookuppropertyby_address 1 Full record from a US address (loose strings work, 6+ chars)
lookuppropertyby_url 1 Full record from a pasted zillow.com/homedetails/... link
lookuppropertyby_zpid 1 Full record when the zpid is already known (cache-served when fresh)
get_zestimate 1 Just the Zestimate, rent Zestimate, tax assessed value, last sold price
search_listings 1 per result For sale, for rent or sold listings by location or bbox plus filters
getpricehistory 1 List price changes, sale prices, withdrawals
getpropertyphotos 1 Photo gallery (responsive image URLs)
getpropertyschools 1 Assigned schools with GreatSchools ratings
getlistingagent 1 Listing agent and broker contact for an active listing

Pick the narrowest tool: get_zestimate for a valuation question beats fetching the full record. The full record returns 250+ fields, so prefer the sub-resource tools when the user wants one slice.

Parameter details and response field notes: see [reference.md](reference.md).

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

Every function returns a Python dict, never raises:

  • {"error": "auth", ...}: ZILLAPI_KEY missing or invalid
  • {"error": "HTTP 404", ...}: property not found
  • {"error": "HTTP 422", ...}: bad parameter values
  • {"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.