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.).
Installation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
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