← 返回 Skills 市场
nikhonit

Zillow Full

作者 nikhonit · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
113
总下载
1
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install zillow-full
功能描述
Complete Zillow property data toolkit via Zillapi.com. Nine tools — address/URL/zpid lookup, Zestimate, listings search, photos, schools, price history, agen...
使用说明 (SKILL.md)

zillow-full

Complete Zillow property data toolkit via Zillapi.com. Use when the user explicitly asks about a U.S. property, its value, listings to buy or rent, or related real-estate data.

When to use this skill

Each tool call consumes Zillapi credits, so this skill activates only when the user's request is genuinely about real-estate data — not when an address or Zillow link merely appears in passing.

DO use when the user:

  • Asks about a Zestimate, property value, rent estimate, or tax-assessed value → get_zestimate
  • Pastes a Zillow URL and asks about that property → lookup_property_by_url
  • Gives an address and asks about the property, schools, photos, or agent → lookup_property_by_address
  • Asks to find homes matching criteria (location, price range, beds, baths) → search_listings
  • Asks for the price history, last sale, or ownership timeline of a known property → get_price_history
  • Asks for the listing agent or broker contact → get_listing_agent
  • Asks what schools serve a property → get_property_schools
  • Asks to see photos of a property → get_property_photos

Do NOT use when:

  • An address appears incidentally in context (email signatures, news articles, copy-pasted unrelated content)
  • The user is discussing real estate abstractly without asking for data on a specific property or listing search
  • The user has not signaled they want a property lookup

When the intent is ambiguous, ask the user to confirm before calling a tool. These tools cost credits and return large records the user may not want.

Tools

lookup_property_by_address — 1 credit

Look up a single property by U.S. address. Returns the full property record: price, beds, baths, sqft, year built, lot size, Zestimate, rent Zestimate, tax assessed value, price history, photos, schools, agent contact, lat/lon, home type, home status, and 250+ additional fields.

Use this when the user gives an address. Address strings as loose as 123 Main St, Austin TX work — the API tolerates partial addresses ≥6 characters.

lookup_property_by_url — 1 credit

Same as above but takes a Zillow.com URL. Use this when the user pastes a zillow.com/homedetails/... link.

lookup_property_by_zpid — 1 credit (cache-served when fresh)

Look up a property by Zillow zpid. Use this when you already have the zpid from a previous call. Cheaper because the response can be served from cache.

get_zestimate — 1 credit

Get just the Zestimate, rent Zestimate, tax-assessed value, and last-sold price for a property. Use this when you only need the valuation, not the full record.

search_listings — 1 credit per result, up to 50

Search active for-sale, for-rent, or sold listings. Filter by location (city/state/ZIP) or bounding box, price, beds, baths, sqft, year built, home type, and days on Zillow.

get_price_history — 1 credit

Get the price and listing-status history for a property (list price changes, sale prices, withdrawals).

get_property_photos — 1 credit

Get the photo gallery for a property (responsive image URLs at multiple resolutions).

get_property_schools — 1 credit

Get the assigned elementary, middle, and high schools for a property with GreatSchools ratings.

get_listing_agent — 1 credit

Get the listing agent and broker contact (name, email, phone, license number) for an active listing.

Authentication

Set ZILLAPI_KEY to your Zillapi API key. Keys are zk_... strings.

export ZILLAPI_KEY="zk_..."

Get a free key with 100 credits at \x3Chttps://zillapi.com/signup> — no card required.

Pricing

Plan Price Credits Rate limit Top-ups
Free $0 100 (one-time) 20/min not available
Monthly $5/mo 1,000/month 200/min $4 per 1,000
Annual $54/yr 12,000 upfront 300/min $3 per 1,000

One credit equals one property record returned. Failed calls do not consume credits. Top-ups are available on Monthly and Annual plans only.

Errors

All functions return a Python dict. On success the dict contains the API response. On failure the dict contains an error key:

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

API reference

  • OpenAPI spec: \x3Chttps://zillapi.com/openapi.json>
  • REST docs: \x3Chttps://zillapi.com/api/properties/>
  • Hosted MCP server (alternative to this skill): \x3Chttps://api.zillapi.com/mcp>

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.

安全使用建议
Install this only if you intend to use Zillapi for property data. Use a dedicated API key, monitor credit usage, avoid unnecessary broad searches, and remember that queried addresses and listing criteria are sent to Zillapi.
功能分析
Type: OpenClaw Skill Name: zillow-full Version: 1.0.1 The zillow-full skill is a legitimate toolkit for accessing real-estate data via the Zillapi.com REST API. The implementation in handler.py uses only Python's standard library (urllib) to interact with the specified API endpoint (api.zillapi.com) and requires a user-provided ZILLAPI_KEY. There is no evidence of data exfiltration, malicious execution, or prompt injection; the code and documentation (SKILL.md) are well-aligned with the stated purpose of property data retrieval.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The advertised real-estate lookup capabilities match the code and are purpose-aligned, but users should notice that responses can include detailed property records, photos, schools, price history, and agent contact data.
Instruction Scope
The skill explicitly says to use it only for real-estate data requests and to ask for confirmation when intent is ambiguous, which appropriately scopes credit-consuming calls.
Install Mechanism
There is no install spec or dependency installation; the handler uses only Python standard-library HTTP calls.
Credentials
The ZILLAPI_KEY credential and external calls to api.zillapi.com are disclosed and necessary for the stated service integration.
Persistence & Privilege
The artifacts show no background process, persistence, local file indexing, privilege escalation, or local credential-store access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install zillow-full
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /zillow-full 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
v1.0.1: addresses ClawScan findings ASI01 (Agent Goal Hijack) and ASI03 (Identity and Privilege Abuse). Tightened 'When to use this skill' to require explicit user intent and added explicit 'Do NOT use when' section. Declared ZILLAPI_KEY in metadata.openclaw.requires.env + primaryEnv per OpenClaw spec. No code change.
v1.0.0
Initial release: all-in-one Zillow property data toolkit via Zillapi.com - Provides 8 tools in one bundle: address/URL lookup, Zestimate, listings search, photos, schools, tax history, price history, agent contact - Supports both full property record lookups and single-field queries (e.g., Zestimate, photos, schools) - Search listings by location, price, features, and more - Simple authentication with ZILLAPI_KEY; free trial available - Transparent credit-based pricing system for all features
元数据
Slug zillow-full
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Zillow Full 是什么?

Complete Zillow property data toolkit via Zillapi.com. Nine tools — address/URL/zpid lookup, Zestimate, listings search, photos, schools, price history, agen... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 113 次。

如何安装 Zillow Full?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install zillow-full」即可一键安装,无需额外配置。

Zillow Full 是免费的吗?

是的,Zillow Full 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Zillow Full 支持哪些平台?

Zillow Full 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Zillow Full?

由 nikhonit(@nikhonit)开发并维护,当前版本 v1.0.1。

💬 留言讨论