zeropointrepo/zillow-skills · Archived

zillow-search

Searches US property listings for sale, for rent or sold via the zillapi API, filtered by location or bounding box, price, beds, baths, square footage, year built, home type and days on Zillow. Use when the user asks to find homes, condos, apartments, rentals, sold comparables or listings matching criteria in a city, ZIP or area. Do not use for a single known property (zillow-full covers lookups) or when a location appears incidentally. Each returned listing costs one credit, so keep max_items …

First seen Aug 18, 2026

Installation

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

Summary

  • Searches US property listings for sale, for rent or sold via the zillapi API, filtered by location or bounding box, price, beds, baths, square footage, year built, home type and days on Zillow.
  • Use when the user asks to find homes, condos, apartments, rentals, sold comparables or listings matching criteria in a city, ZIP or area.
  • Do not use for a single known property (zillow-full covers lookups) or when a location appears incidentally.
  • Each returned listing costs one credit, so keep max_items tight.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

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,140 B
  • docs SUMMARY.md 526 B

History

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

SKILL.md

zillow-search

Listing-search skill. Fire only on an explicit search request. Credits scale with results (1 per listing returned), so narrow filters and cap max_items before calling; confirm with the user when a query looks broad.

For one known property use zillow-full's lookuppropertyby_address instead.

Tool

search_listings (1 credit per result, up to 50)

Pass either location or bbox (at least one required):

  • location: city, ZIP or neighborhood string ("Austin, TX", "78704", "Brooklyn, NY")
  • bbox: "west,south,east,north" in decimal degrees

Filters:

  • status: forsale | forrent | sold (default for_sale)
  • pricemin, pricemax: integer dollars
  • bedsmin, bedsmax, bathsmin, bathsmax: integers
  • sqftmin, sqftmax, yearbuiltmin, yearbuiltmax: integers
  • hometypes: comma-separated subset of house, condo, townhouse, multifamily, manufactured, lot, apartment
  • daysonzillow: one of "1", "7", "14", "30", "90", "6m", "12m", "24m", "36m"
  • max_items: integer, capped at 50 per call

A search returning 25 results consumes 25 credits.

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 422", ...}: bad filter values, check the parameter list above
  • {"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" is a registered trademark of Zillow Group, Inc.