pryscraper/templates/zillow-listing.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

54 lines
No EOL
1.3 KiB
JSON

{
"name": "Zillow Listing",
"description": "Extract real estate listing details from Zillow",
"site": "zillow.com",
"category": "real_estate",
"icon": "\ud83c\udfe1",
"url_pattern": "*://www.zillow.com/homedetails/*",
"schema": {
"name": "zillow_listing",
"base_selector": ".ds-home-details-chip",
"fields": [
{
"name": "address",
"selector": "[data-testid='home-details-chip-address']",
"type": "text"
},
{
"name": "price",
"selector": "[data-testid='home-details-chip-price']",
"type": "text",
"transform": "float"
},
{
"name": "bedrooms",
"selector": "[data-testid='bed-bath-beyond']",
"type": "text"
},
{
"name": "bathrooms",
"selector": "[data-testid='bed-bath-beyond']",
"type": "text"
},
{
"name": "sqft",
"selector": "[data-testid='bed-bath-beyond']",
"type": "text",
"transform": "int"
},
{
"name": "description",
"selector": "[data-testid='description']",
"type": "text"
},
{
"name": "image_url",
"selector": ".media-stream img",
"type": "attribute",
"attribute": "src"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}