Zillow Explorer

Zillow Explorer

by jupri

Need real estate data from Zillow without the manual hassle? This actor is your go-to scraper for pulling detailed home listings directly from Zillow....

611,927 runs
689 users
Try This Actor

Opens on Apify.com

About Zillow Explorer

Need real estate data from Zillow without the manual hassle? This actor is your go-to scraper for pulling detailed home listings directly from Zillow.com. I use it to gather property details like price, square footage, bedroom/bathroom counts, agent info, and full listing descriptions. It handles search results pages, so you can target specific cities, ZIP codes, or filters. The data comes out structured and ready for a spreadsheet or database, which is perfect for building market analysis reports, tracking price trends, or generating leads. Setting it up is straightforward: you feed it your search URLs or criteria, and it does the browsing and data extraction for you. It manages pagination automatically, collecting results from multiple pages in one run. This saves hours compared to copying and pasting manually. Whether you're a real estate analyst researching comps, a marketer building a targeted list, or a developer needing a reliable data feed for an app, this tool gets the job done. It's a practical, no-fuss way to get clean Zillow data at scale.

What does this actor do?

Zillow Explorer is a web scraping and automation tool available on the Apify platform. It's designed to help you extract data and automate tasks efficiently in the cloud.

Key Features

  • Cloud-based execution - no local setup required
  • Scalable infrastructure for large-scale operations
  • API access for integration with your applications
  • Built-in proxy rotation and anti-blocking measures
  • Scheduled runs and webhooks for automation

How to Use

  1. Click "Try This Actor" to open it on Apify
  2. Create a free Apify account if you don't have one
  3. Configure the input parameters as needed
  4. Run the actor and download your results

Documentation

Welcome to Zillow Scraper enter image description here ## πŸ‚ About Zillow.com Zillow Group, Inc., or simply Zillow, is an American tech real-estate marketplace company that was founded in 2006, and was created by Rich Barton and Lloyd Frink, former Microsoft executives and founders of Microsoft spin-off Expedia; Spencer Rascoff, a co-founder of Hotwire.com; David Beitel, Zillow's current chief technology officer; and Kristin Acker, Zillow's current senior vice president of experience design. enter image description here ## πŸ‚ About This Actor Scrape information about properties in specific city or region. Search and extract detail data such as features, price & tax history, nearby schools, walk scores and more. ### Features : - πŸƒ Search multiple cities/places. - πŸƒ Extract specific property URL's (@ZPID) - πŸƒ Switchable extra information, only get what you need. - πŸƒ Comprehensive list of filters. - πŸƒ Fast crawling, minimize compute units. ### Disclaimer : - πŸ‘‰ Maximum number of results allowed by Zillow is 1000 (but lets try to scrape more) - πŸ‘‰ Maximum multiple regions allowed by Zillow is 5 - πŸ‘‰ Multiple address more than 5 is allowed - πŸ‘‰ Free Trial limited to first 100 results. ## ⚠️ Under Maintenance "Under Maintenance" mode means we continuously take care of our actor to ensure peak performance. ## πŸ‚ Tutorial ### Parameters | Name | Type | Description | |-|-|-| | location | string / array | City, Region, Address, Zip-code or @ZPID(s) | | search_type | string | Type of search: Sell, Sold, Rent | | limit | integer | Number of results: 1-1000 (default=1) | | sort | string | Sorting key | | order | string | Sorting direction: empty=automatic, asc=ascending, desc=descending ### Data Cleansing (dev_no_strip) Most of the results will return empty or insignificant values, including False, 0, empty STRING, empty ARRAY, and empty OBJECT. By default, the Actor will remove this 'garbage', except for the first row of the dataset. To disable this behavior and return all empty values, use dev_no_strip=True under Advanced Options > Data Cleansing. yaml { "dev_no_strip": True } ### Data Transform (dev_transform_fields) There may be times when you only need specific information, like just the price and address. Use dev_transform_fields under Advanced Options > CUSTOM FIELD #### key (source attribute) - For nested object use DOT. For example: address.streetAddress - For nested array use NUMBER (index of array element starting from index=0). For example: images.0.url #### value (result attribute) [optional] - By default it will copy from key value Notes : - πŸ‘‰ This process is performed AFTER all results is scraped. - πŸ‘‰ Network cost will not effected, as the Actor still fetch all full set of attributes. - πŸ‘‰ Make sure all required attributes are present (use includes parameters if necessary) #### Example : yaml { "location": ["New York, NY"], "limit": 10, "dev_transform_fields": [ { "key": "zpid", "value": "" }, { "key": "price.value", "value": "" } { "key": "address.streetAddress", "value": "street" } ] } Results submitted to Dataset Storage : json [ ... { "zpid": "___", "price.value": 10000, "street": "___" }, { "zpid": "___", "price.value": 50000, "street": "___" }, ... ] ## πŸ‚ Examples ### Example #1: Basic Usage Searching properties in specific location. yaml { "location": ["New York"], "search_type": "sell" } Location can also accept ZPID list (prefixed with @): yaml { "location": ["@108057228", "@79232360"] } ### Example #2: Multiple Cities/Places Multiple cities/places/zip-codes argument can be supplied for searching in multiple region inside United States. The following example search most recent properties in 3 different place: - Bellevue WA 98004 - Austin TX 78732 - Los Angeles CA 90001 yaml { "location": ["98004", "78732", "90001"], "search_type": "sell", "sort": "newest", "limit": 200 } Notes : - πŸ‘‰ Multiple regions limited to max 5 regions. - πŸ‘‰ Multiple regions search is supposed to be used for regions that are close to each other. ### Example #3: Using Prompt (Zillow AI) Start with prompt only, other parameter set to empty yaml { "prompt": "Homes with +2 bedrooms and 1-3 bathrooms under $500K in Alaska" } then overrides with your own search parameters yaml { "prompt" : "Homes with +2 bedrooms and 1-3 bathrooms under $500K in Alaska", "location" : ["Washington DC"], # overrides location "max_price" : 300000 # overrides price } ### Example #4: Search URL The important part is searchQueryState values yaml { "prompt": "https://www.zillow.com/homes/for_rent/?searchQueryState=..." } then overrides with your own search parameters yaml { "prompt" : "https://www.zillow.com/homes/for_rent/?searchQueryState=...", "max_price" : 400000, "limit" : 10 } ### Example #5: Draw Map Draw map on Zillow website map. and copy paste the resulting Full URL into the Prompt enter image description here yaml { "prompt": "https://www.zillow.com/homes/recently_sold/?searchQueryState=...&customRegionId=..." } ### Example #6: Additional Data Additional information can be retrieved using includes:[section] parameters. |section|type|description| |-|-|-| |description|boolean|Property long description| |foreClosure|boolean|Fore Closure Info| |homeInsights|boolean|Home Insights| |resoFacts|boolean|Features & Facts| |attributionInfo|boolean|Attribution Info| |priceHistory|boolean|Price History| |taxHistory|boolean|Tax History| |valueHistory|boolean|Home Value| |schools|boolean|Nearby schools| |tourEligibility|boolean|Tour Eligibility| |localProtections|boolean|Local Protections| |walkScores|boolean|Walk Scores| |photos|boolean|Photos & Media| yaml { "includes:description": true, "includes:foreClosure": true, "includes:homeInsights": true, "includes:resoFacts": true, "includes:attributionInfo": true, "includes:priceHistory": true, "includes:taxHistory": true, "includes:schools": true, "includes:tourEligibility": true, "includes:localProtections": true, "includes:walkScores": true, "includes:photos": true } ## πŸ‚ Output Samples > Notes: > this examples will show all available attributes. In reality all empty values will stripped out. This includes null, false, empty array and empty object ### Basic Information yaml { "zpid": 84102313, "location": { "latitude": 43.064545, "longitude": -76.12287 }, "address": { "streetAddress": "1666 James St", "zipcode": "13203", "city": "Syracuse", "state": "NY" }, "media": { "propertyPhotoLinks": { "defaultLink": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_g.jpg", "mediumSizeLink": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_c.jpg", "highResolutionLink": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_f.jpg", "tvLink": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_m.jpg", "tvCollectionLink": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_l.jpg", "tvHighResolutionLink": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_n.jpg" }, "thirdPartyPhotoLinks": {}, "hasVRModel": false, "hasVideos": false, "hasApprovedThirdPartyVirtualTour": true }, "isFeatured": false, "currency": "USD", "country": "USA", "listingDateTimeOnZillow": 1656853962426, "bestGuessTimeZone": "America/New_York", "bathrooms": 4, "bedrooms": 5, "livingArea": 3292, "yearBuilt": 1920, "lotSizeWithUnit": { "lotSize": 0.296, "lotSizeUnit": "acres" }, "propertyType": "singleFamily", "listing": { "listingStatus": "forSale", "listingSubType": { "isFSBA": true } }, "daysOnZillow": 45, "isUnmappable": false, "isPreforeclosureAuction": false, "price": { "value": 249900, "changedDate": 1658894400000, "priceChange": -10000, "pricePerSquareFoot": 76 }, "estimates": {}, "zillowOwnedProperty": { "isZillowOwned": false }, "taxAssessment": { "taxAssessedValue": 173826, "taxAssessmentYear": "2021" }, "region": {}, "personalizedResult": { "isViewed": false }, "ssid": 9, "listingDataSource": "Phoenix", "homeStatus": "FOR_SALE", "isListingClaimedByCurrentSignedInUser": false, "isCurrentSignedInAgentResponsible": false, "isCurrentSignedInUserVerifiedOwner": false, "regionString": "Syracuse NY 13203", "isRentalListingOffMarket": false, "url": "https://www.zillow.com/homedetails/1666-James-St-Syracuse-NY-13203/84102313_zpid/", "isUndisclosedAddress": false, "boroughId": null, "providerListingID": null, "isPremierBuilder": false, "isZillowOwned": false, "listPriceLow": null, "newConstructionType": null, "zestimateLowPercent": null, "zestimateHighPercent": null, "restimateLowPercent": null, "restimateHighPercent": null, "parentRegion": { "name": "Lincoln Park" }, "countyFIPS": "36067", "parcelId": "31150001911180", "contingentListingType": null, "brokerageName": "Hunt Real Estate ERA", "pals": [ { "name": "HUNT ERA Real Estate", "palsId": "a942d4692c12ca5bac73f3274391e800" } ], "listingAccountUserId": "X1-ZUxjnw6x7akmix_1fz16", "sellingSoon": [ { "treatmentId": "model_0", "percentile": 0.52 } ], "isIncomeRestricted": null, "brokerId": null, "monthlyHoaFee": null, "mortgageRates": { "fifteenYearFixedRate": 5.164, "thirtyYearFixedRate": 5.234, "arm5Rate": 5.65 }, "propertyTaxRate": 2.79, "mlsid": "S1417796", "brokerImageUrl": "https://photos.zillowstatic.com/fp/4c2eda76802a3c9d76faae317a9c139c-zillow_web_95_35.jpg", "virtualTourUrl": "https://my.matterport.com/show/?m=MNt34S5eoLN&mls=1", "hasApprovedThirdPartyVirtualTourUrl": true, "photoCount": 44, "livingAreaUnits": "Square Feet", "postingProductType": "Standard", "marketingName": null, "cityId": 7353, "stateId": 43, "zipPlusFour": "2816", "numberOfUnitsTotal": 0, "datePostedString": "2022-07-03", "foreclosureTypes": { "isBankOwned": false, "isForeclosedNFS": false, "isPreforeclosure": false, "isAnyForeclosure": false, "wasNonRetailAuction": false, "wasForeclosed": false, "wasREO": null, "wasDefault": null }, "streetViewServiceUrl": null, "postingUrl": null, "thirdPartyVirtualTour": { "externalUrl": null, "lightboxUrl": "https://my.matterport.com/show/?m=MNt34S5eoLN&play=1&mls=1", "staticUrl": "https://my.matterport.com/api/v2/player/models/MNt34S5eoLN/thumb", "providerKey": "MATTERPORT", "approved": true }, "listingFeedID": null, "priceChangeDateString": "2022-07-27", "comingSoonOnMarketDate": null, "lastSoldPrice": 137000, "isHousingConnector": false, "isRecentStatusChange": false, "isNonOwnerOccupied": false, "county": "Onondaga County", "rentalApplicationsAcceptedType": "REQUEST_TO_APPLY", "isRentalsLeadCapMet": false, "isPaidMultiFamilyBrokerId": false, "_type": "property" } ### Description yaml { "description": "Welcome to 1666 James! As you enter, you are graced with 1920’s character throughout this 5 bedroom 3 and half bath home. Admire the vintage door and stained-glass windows in the front foyer. On the first floor, there is a newly renovated kitchen with high ceilings, open living concept, and a beautiful wood burning fireplace. Great for entertaining! The first floor also offers two nicely sized bedrooms and one and half bathrooms. Head upstairs to enjoy the character of the family room which includes charming built-in shelving and an adorable window seat! The second kitchen is equipped with a large kitchen for preparing all the lovely meals to be served in the formal dining room. There are three more generously sized bedrooms and two full bathrooms including the master suite. This layout offers great potential for an In-law suite. Seller completed many updates but made sure to keep the charm alive! Off street parking, two car garage, partially finished basement, and the perfect amount of yard space. Do not miss out on this opportunity to own a piece of history." } ### Foreclosure yaml { "foreclosureDefaultFilingDate": null, "foreclosureAuctionFilingDate": "2021-06-23 00:00:00", "foreclosureLoanDate": null, "foreclosureLoanOriginator": "THE BANK OF NEW YORK MELLON", "foreclosureLoanAmount": null, "foreclosurePriorSaleDate": 1101945600000, "foreclosurePriorSaleAmount": 39200, "foreclosureBalanceReportingDate": null, "foreclosurePastDueBalance": null, "foreclosureUnpaidBalance": null, "foreclosureAuctionTime": null, "foreclosureAuctionDescription": "Notice of Sale", "foreclosureAuctionCity": "NIAGARA FALLS", "foreclosureAuctionLocation": "775 THIRD STREET", "foreclosureDate": 1628812800000, "foreclosureAmount": 36000, "foreclosingBank": "THE BANK OF NEW YORK MELLON", "foreclosureJudicialType": "Judicial" } ### Home Insights yaml { "homeInsights": [ { "insights": [ { "modelId": "v2-2", "treatmentId": "model_0", "phrases": [ "Off street parking", "Master suite", "Open living concept", "Stained-glass windows", "Large kitchen" ] }, { "modelId": "v2-2", "treatmentId": "model_1", "phrases": [ "Off street parking", "Master suite", "Open living concept", "Stained-glass windows", "Large kitchen" ] } ] } ] } ### Features & Facts yaml { "resoFacts": { "accessibilityFeatures": null, "associationFee": null, "associationAmenities": null, "associationFee2": null, "associationFeeIncludes": null, "associationName": null, "associationName2": null, "associationPhone": null, "associationPhone2": null, "basementYN": false, "buildingName": null, "buyerAgencyCompensation": "3", "buyerAgencyCompensationType": "%", "appliances": [ "Dryer", "Dishwasher", "Electric Oven", "Electric Range", "Gas Water Heater", "Microwave", "Refrigerator", "Washer" ], "atAGlanceFacts": [ { "label": "Type", "value": "Single Family Residence, Residential" }, { "label": "Year Built", "value": "1920" }, { "label": "Heating", "value": "Gas, Forced Air" }, { "label": "Cooling", "value": "Central Air" }, { "label": "Parking", "value": "2 Garage spaces" }, { "label": "Lot", "value": "0.30 Acres" }, { "label": "Days on Zillow", "value": "45 Days" }, { "label": "Price/sqft", "value": "$76" }, { "label": "Buyer's Agent Fee", "value": "3" }, { "label": "Offer Review Date", "value": null } ], "attic": null, "availabilityDate": null, "basement": "Full,Partially Finished", "bathrooms": 4, "bathroomsFull": 3, "bathroomsHalf": 1, "bathroomsOneQuarter": null, "bathroomsPartial": null, "bathroomsThreeQuarter": null, "bedrooms": 5, "bodyType": null, "canRaiseHorses": false, "carportParkingCapacity": null, "cityRegion": "Syracuse", "commonWalls": null, "communityFeatures": null, "cooling": [ "Central Air" ], "coveredParkingCapacity": null, "cropsIncludedYN": null, "developmentStatus": null, "doorFeatures": null, "electric": [ "Circuit Breakers" ], "elevation": null, "elevationUnits": null, "entryLevel": null, "entryLocation": null, "exclusions": null, "fencing": "Partial", "fireplaceFeatures": null, "fireplaces": 2, "flooring": [ "Carpet", "Hardwood", "Marble", "Tile", "Varies", "Vinyl" ], "foundationArea": null, "furnished": false, "garageParkingCapacity": 2, "gas": null, "greenBuildingVerificationType": null, "greenEnergyEfficient": null, "greenIndoorAirQuality": null, "greenSustainability": null, "greenWaterConservation": null, "hasAssociation": null, "hasAttachedGarage": null, "hasAttachedProperty": false, "hasCooling": true, "hasCarport": null, "hasElectricOnProperty": null, "hasFireplace": true, "hasGarage": true, "hasHeating": true, "hasLandLease": false, "hasOpenParking": null, "hasSpa": false, "hasPrivatePool": null, "hasView": false, "hasWaterfrontView": null, "heating": [ "Gas", "Forced Air" ], "highSchool": null, "highSchoolDistrict": "Syracuse", "hoaFee": null, "homeType": "SingleFamily", "horseAmenities": null, "horseYN": null, "interiorFeatures": [ "Den", "Separate/Formal Dining Room", "Eat-in Kitchen", "Separate/Formal Living Room", "Granite Counters", "Home Office", "Kitchen Island", "Other", "See Remarks", "Second Kitchen", "Natural Woodwork", "Bedroom on Main Level", "Bath in Master Bedroom" ], "irrigationWaterRightsAcres": null, "irrigationWaterRightsYN": null, "isSeniorCommunity": null, "landLeaseAmount": null, "landLeaseExpirationDate": null, "laundryFeatures": [ "In Basement" ], "levels": "Two", "listingId": null, "lotFeatures": [ "Corner Lot", "Historic District", "Near Public Transit", "Residential Lot" ], "lotSize": "0.30 Acres", "mainLevelBathrooms": 2, "mainLevelBedrooms": 2, "marketingType": null, "middleOrJuniorSchool": null, "middleOrJuniorSchoolDistrict": "Syracuse", "municipality": null, "numberOfUnitsInCommunity": null, "offerReviewDate": null, "onMarketDate": 1656806400000, "openParkingCapacity": null, "otherEquipment": null, "otherParking": null, "ownershipType": null, "parkingCapacity": 0, "parkingFeatures": [ "Attached", "Electricity", "Driveway", "Garage Door Opener" ], "patioAndPorchFeatures": null, "poolFeatures": null, "pricePerSquareFoot": 76, "roadSurfaceType": null, "roofType": "Slate,Tile", "rooms": [], "securityFeatures": [ "Security System Owned" ], "sewer": [ "Connected" ], "spaFeatures": null, "specialListingConditions": "Standard", "stories": 2, "storiesTotal": 2, "subdivisionName": null, "taxAnnualAmount": 5427, "totalActualRent": null, "utilities": [ "Cable Available", "High Speed Internet Available", "Sewer Connected", "Water Connected" ], "view": [], "waterSource": [ "Connected", "Public" ], "waterBodyName": null, "waterfrontFeatures": null, "waterView": null, "waterViewYN": null, "windowFeatures": [ "Leaded Glass" ], "yearBuilt": 1920, "zoning": null, "zoningDescription": null, "aboveGradeFinishedArea": null, "additionalParcelsDescription": null, "architecturalStyle": "Colonial,Historic/Antique,Other,Tudor", "belowGradeFinishedArea": null, "builderModel": null, "builderName": null, "buildingArea": "3,292", "buildingAreaSource": null, "buildingFeatures": null, "constructionMaterials": [ "Stucco", "Copper Plumbing" ], "exteriorFeatures": [ "Blacktop Driveway", "Fence" ], "foundationDetails": [ "Block" ], "frontageLength": null, "frontageType": null, "hasAdditionalParcels": false, "hasPetsAllowed": null, "hasRentControl": null, "hasHomeWarranty": false, "inclusions": null, "incomeIncludes": null, "isNewConstruction": null, "listingTerms": "Cash,Conventional", "livingAreaRange": null, "livingAreaRangeUnits": null, "livingArea": "3,292 sqft", "lotSizeDimensions": "70 x 181", "numberOfUnitsVacant": null, "otherStructures": null, "ownership": null, "parcelNumber": "31150001900000110180000000", "propertyCondition": "Resale", "propertySubType": [ "Single Family Residence", "Residential" ], "structureType": null, "topography": null, "vegetation": null, "woodedArea": null, "yearBuiltEffective": null, "virtualTour": "https://my.matterport.com/show/?m=MNt34S5eoLN", "elementarySchool": null, "elementarySchoolDistrict": "Syracuse", "listAOR": "Syracuse" } } ### Attribution Info yaml { "attributionInfo": { "listingAgreement": null, "mlsName": "NYSAMLSs", "mlsDisclaimer": "The data relating to real estate on this web site comes in part from the Internet Data Exchange (IDX) Program\nof the CNYIS, UNYREIS and WNYREIS. Real estate listings held by firms other than Zillow, Inc. are marked with\nthe IDX logo and include the Listing Broker’s Firm Name. Listing Data last updated at 2022-08-17 23:42:08 PDT.\nDisclaimer: All information deemed reliable but not guaranteed and should be independently verified. All properties\nare subject to prior sale, change or withdrawal. Neither the listing broker(s) nor Zillow, Inc. shall be responsible for any typographical errors, misinformation, misprints, and shall be held totally harmless.\nΒ© 2022 CNYIS, UNYREIS, WNYREIS. All rights reserved.\n\nThe listing broker’s offer of compensation is made only to participants of the MLS where the listing is filed.", "mlsId": "S1417796", "agentEmail": "ryan.yamini@huntrealestate.com", "agentLicenseNumber": null, "agentName": "Ryan Yamini", "agentPhoneNumber": "315-699-3200", "attributionTitle": "Listing by:", "brokerName": "Hunt Real Estate ERA", "brokerPhoneNumber": "315-699-3200", "buyerAgentMemberStateLicense": null, "buyerAgentName": null, "buyerBrokerageName": null, "coAgentLicenseNumber": null, "coAgentName": "Samantha Yamini", "coAgentNumber": "315-699-3200", "lastChecked": "2022-08-17 23:42:08", "lastUpdated": "2022-07-31 01:02:33", "listingOffices": [ { "associatedOfficeType": "listOffice", "officeName": "Hunt Real Estate ERA" }, { "associatedOfficeType": "coListOffice", "officeName": "Hunt Real Estate ERA" } ], "listingAgents": [ { "associatedAgentType": "listAgent", "memberFullName": "Ryan Yamini", "memberStateLicense": "10301217122" }, { "associatedAgentType": "coListAgent", "memberFullName": "Samantha Yamini", "memberStateLicense": "10401347686" } ], "providerLogo": "https://photos.zillowstatic.com/fp/4c2eda76802a3c9d76faae317a9c139c-zillow_web_95_35.jpg", "trueStatus": null } } ### Price History yaml { "priceHistory": [ { "date": "2022-07-27", "time": 1658880000000, "price": 249900, "pricePerSquareFoot": 76, "priceChangeRate": -0.038476337052712584, "event": "Price change", "source": "NYSAMLSs", "buyerAgent": null, "sellerAgent": null, "showCountyLink": false, "postingIsRental": false, "attributeSource": { "infoString1": "S1417796", "infoString2": "NYSAMLSs", "infoString3": "https://photos.zillowstatic.com/fp/4c2eda76802a3c9d76faae317a9c139c-zillow_web_logo_inf_11.jpg" } }, { "date": "2022-07-03", "time": 1656806400000, "price": 259900, "pricePerSquareFoot": 79, "priceChangeRate": 0.897080291970803, "event": "Listed for sale", "source": "NYSAMLSs", "buyerAgent": null, "sellerAgent": null, "showCountyLink": false, "postingIsRental": false, "attributeSource": { "infoString1": "S1417796", "infoString2": "NYSAMLSs", "infoString3": "https://photos.zillowstatic.com/fp/4c2eda76802a3c9d76faae317a9c139c-zillow_web_logo_inf_11.jpg" } }, { "date": "2017-12-12", "time": 1513036800000, "price": 137000, "pricePerSquareFoot": 42, "priceChangeRate": 0, "event": "Sold", "source": "NYSAMLSs", "buyerAgent": null, "sellerAgent": { "photo": { "url": "https://photos.zillowstatic.com/h_e/ISx7k8p775idxq0000000000.jpg" }, "name": "Kazi Gautam - NY Licensed Assoc. R.E. Broker", "profileUrl": "/profile/Kazi-Gautam/" }, "showCountyLink": false, "postingIsRental": false, "attributeSource": { "infoString1": "S1064695", "infoString2": "NYSAMLSs", "infoString3": "https://photos.zillowstatic.com/fp/4c2eda76802a3c9d76faae317a9c139c-zillow_web_logo_inf_11.jpg" } } ] } ### Tax History yaml { "taxHistory": [ { "time": 1629269435719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1597733435719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1566111035719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1534575035719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1503039035719, "taxPaid": 5628.27, "taxIncreaseRate": 1.8314636, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1471503035719, "taxPaid": 1987.76, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1439880635719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1408344635719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1376808635719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1345272635719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1313650235719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1282114235719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1250578235719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1219042235719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1187419835719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1155883835719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1124347835719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1092811835719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 }, { "time": 1061189435719, "taxPaid": null, "taxIncreaseRate": 0, "value": 129500, "valueIncreaseRate": 0 } ] } ### Nearby Schools yaml { "schools": [ { "distance": 0.8, "name": "Dr Weeks Elementary School", "rating": 3, "level": "Primary", "studentsPerTeacher": 15, "assigned": null, "grades": "PK-5", "link": "https://www.greatschools.org/school?id=03801&state=NY", "type": "Public", "size": 768, "totalCount": 1, "isAssigned": true }, { "distance": 0.2, "name": "Lincoln Middle School", "rating": 3, "level": "Middle", "studentsPerTeacher": 11, "assigned": null, "grades": "6-8, 10", "link": "https://www.greatschools.org/school?id=03815&state=NY", "type": "Public", "size": 540, "totalCount": 2, "isAssigned": true } ] } ### Tour Eligibility yaml { "tourEligibility": { "isPropertyTourEligible": true, "propertyTourType": "STANDARD", "propertyTourAvailability": [ { "status": "AVAILABLE", "date": "2022-08-18", "times": [ "11:00:00", "11:30:00", "12:00:00", "12:30:00", "13:00:00", "13:30:00", "14:00:00", "14:30:00", "15:00:00", "15:30:00", "16:00:00", "16:30:00", "17:00:00", "17:30:00", "18:00:00", "18:30:00", "19:00:00" ] }, { "status": "AVAILABLE", "date": "2022-08-19", "times": [ "09:00:00", "09:30:00", "10:00:00", "10:30:00", "11:00:00", "11:30:00", "12:00:00", "12:30:00", "13:00:00", "13:30:00", "14:00:00", "14:30:00", "15:00:00", "15:30:00", "16:00:00", "16:30:00", "17:00:00", "17:30:00", "18:00:00", "18:30:00", "19:00:00" ] }, { "status": "AVAILABLE", "date": "2022-08-20", "times": [ "09:00:00", "09:30:00", "10:00:00", "10:30:00", "11:00:00", "11:30:00", "12:00:00", "12:30:00", "13:00:00", "13:30:00", "14:00:00", "14:30:00", "15:00:00", "15:30:00", "16:00:00", "16:30:00", "17:00:00", "17:30:00", "18:00:00", "18:30:00", "19:00:00" ] } ] } } ### Local Protections yaml { "localProtections": { "protectionLevels": { "lgbt": { "level": "state", "statePageUrl": "http://www.lgbtmap.org/equality_maps/profile_state/ny" }, "soi": { "level": "state" }, "voucher": { "level": "state" } }, "protections": [ { "covers": { "genderIdentity": true, "sexualOrientation": true, "housingChoiceVoucher": null, "sourceOfIncome": null }, "description": "Employment protections include being fired, denied employment, or otherwise discriminated against by an employer.", "type": "Employment" }, { "covers": { "genderIdentity": true, "sexualOrientation": true, "housingChoiceVoucher": true, "sourceOfIncome": true }, "description": "Housing protections include being unfairly evicted, denied housing, or refused the ability to rent or buy housing.", "type": "Housing" }, { "covers": { "genderIdentity": true, "sexualOrientation": true, "housingChoiceVoucher": null, "sourceOfIncome": null }, "description": "Public accommodations protections include being unfairly refused services or entry to or from places accessible to the public (retail stores, restaurants, parks, hotels, etc).", "type": "Public Accommodations" } ] } } ### Walk Scores yaml { "walkScore": { "walkscore": 54, "description": "Somewhat Walkable", "ws_link": "https://www.walkscore.com/score/loc/lat=43.064545/lng=-76.12287/?utm_source=zillow2.com&utm_medium=ws_api&utm_campaign=ws_api" }, "transitScore": { "transit_score": 35, "description": "Some Transit", "ws_link": "https://www.walkscore.com/score/loc/lat=43.0645/lng=-76.1229/?utm_source=zillow2.com&utm_medium=ts_api&utm_campaign=ts_api" }, "bikeScore": { "bikescore": 47, "description": "Somewhat Bikeable" } } ### Photos & Media yaml { "photos": [ { "caption": "", "mixedSources": { "jpeg": [ { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_192.jpg", "width": 192 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_384.jpg", "width": 384 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_576.jpg", "width": 576 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_768.jpg", "width": 768 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_960.jpg", "width": 960 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_1152.jpg", "width": 1152 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_1344.jpg", "width": 1344 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_1536.jpg", "width": 1536 } ], "webp": [ { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_192.webp", "width": 192 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_384.webp", "width": 384 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_576.webp", "width": 576 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_768.webp", "width": 768 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_960.webp", "width": 960 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_1152.webp", "width": 1152 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_1344.webp", "width": 1344 }, { "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-cc_ft_1536.webp", "width": 1536 } ] }, "url": "https://photos.zillowstatic.com/fp/2b77edad77e6f5d876a6bcde251f26f4-p_d.jpg" }, { "caption": "", "mixedSources": { "jpeg": [ { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_192.jpg", "width": 192 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_384.jpg", "width": 384 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_576.jpg", "width": 576 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_768.jpg", "width": 768 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_960.jpg", "width": 960 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_1152.jpg", "width": 1152 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_1344.jpg", "width": 1344 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_1536.jpg", "width": 1536 } ], "webp": [ { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_192.webp", "width": 192 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_384.webp", "width": 384 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_576.webp", "width": 576 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_768.webp", "width": 768 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_960.webp", "width": 960 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_1152.webp", "width": 1152 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_1344.webp", "width": 1344 }, { "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-cc_ft_1536.webp", "width": 1536 } ] }, "url": "https://photos.zillowstatic.com/fp/a0cc3c52c9b0013e47bbb83e94d1ddc0-p_d.jpg" } ] } ## ✏️ Support ⚑️ Feel free to reach out to the developer for any issues or suggestions for improvement.

Categories

Common Use Cases

Market Research

Gather competitive intelligence and market data

Lead Generation

Extract contact information for sales outreach

Price Monitoring

Track competitor pricing and product changes

Content Aggregation

Collect and organize content from multiple sources

Ready to Get Started?

Try Zillow Explorer now on Apify. Free tier available with no credit card required.

Start Free Trial

Actor Information

Developer
jupri
Pricing
Paid
Total Runs
611,927
Active Users
689
Apify Platform

Apify provides a cloud platform for web scraping, data extraction, and automation. Build and run web scrapers in the cloud.

Learn more about Apify

Need Professional Help?

Couldn't solve your problem? Hire a verified specialist on Fiverr to get it done quickly and professionally.

Find a Specialist

Trusted by millions | Money-back guarantee | 24/7 Support