Real-estate and short-term-rental data from Zillow, Redfin, and Airbnb. Use this skill when the user wants property listings, sold comps, rental searches, vacation rentals, or full property details. Triggers on "Zillow listings in", "homes for sale in", "houses for rent in", "Redfin search", "sold comps for", "Airbnb in", "vacation rentals", "Zillow property at <url>", "Airbnb listing <url>", or any real-estate / short-term rental request. Returns structured JSON — addresses, prices, beds/baths, square footage, photos, agent info — without HTML scraping. Supports rich filters (price range, beds, lot size, days on market, HOA, etc.).
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Real-estate and short-term-rental data from Zillow, Redfin, and Airbnb. Use this skill when the user wants property listings, sold comps, rental searches, vacation rentals, or full property details. Triggers on "Zillow listings in", "homes for sale in", "houses for rent in", "Redfin search", "sold comps for", "Airbnb in", "vacation rentals", "Zillow property at <url>", "Airbnb listing <url>", or any real-estate / short-term rental request. Returns structured JSON — addresses, prices, beds/baths, square footage, photos, agent info — without HTML scraping. Supports rich filters (price range, beds, lot size, days on market, HOA, etc.).
allowed-tools
["Bash(hasdata *)"]
hasdata real-estate APIs
Listings and full property details from Zillow, Redfin, and Airbnb.
When to use
User wants for-sale, for-rent, or sold listings in a city/area
User wants full details on a single Zillow / Redfin / Airbnb URL
User wants to filter by price, beds, baths, square footage, lot size, HOA, etc.
User wants short-term rentals (Airbnb) for specific dates and party size
APIs in this group
Command
Purpose
Cost
zillow-listing
Zillow search — for-sale / for-rent / sold by location
5
zillow-property
Full Zillow property details by URL
5
redfin-listing
Redfin search by location with rich filters
5
redfin-property
Full Redfin property details by URL
5
airbnb-listing
Airbnb search by location, dates, party size
5
airbnb-property
Full Airbnb listing details by URL
5
Quick start
Zillow
# For-sale homes in NYC, $500k–$1M, 2+ beds
hasdata zillow-listing --keyword "New York, NY" --type forSale \
--price-min 500000 --price-max 1000000 --beds-min 2 \
--pretty -o .hasdata/zillow-nyc-sale.json
# For-rent
hasdata zillow-listing --keyword "Brooklyn, NY" --type forRent --pretty -o .hasdata/zillow-bk-rent.json
# Sold (comps)
hasdata zillow-listing --keyword "Austin, TX" --type sold --days-on-zillow "12m" --pretty -o .hasdata/zillow-atx-sold.json
# Full property details
hasdata zillow-property --url "https://www.zillow.com/homedetails/.../31543731_zpid/" --pretty -o .hasdata/zillow-prop.json
# With agent emails (slightly higher cost)
hasdata zillow-property --url "https://www.zillow.com/homedetails/..." --extract-agent-emails --pretty -o .hasdata/zillow-prop-emails.json