Zillow Search Results and Detail Scraper (All-in-one) avatar

Zillow Search Results and Detail Scraper (All-in-one)

Try for free

2 hours trial then $10.00/month - No credit card required now

Go to Store
Zillow Search Results and Detail Scraper (All-in-one)

Zillow Search Results and Detail Scraper (All-in-one)

memo23/zillow-cheerio-scraper
Try for free

2 hours trial then $10.00/month - No credit card required now

Unleash the full power of Zillow data - no limits, no restrictions. Comprehensive scraping for any search URL, delivering complete property insights at scale.

Developer
Maintained by Community

Actor Metrics

  • 35 monthly users

  • No reviews yet

  • 3 bookmarks

  • >99% runs succeeded

  • 5.5 days response time

  • Created in Oct 2024

  • Modified 22 days ago

Unlock the power of real estate data with our comprehensive Zillow Scraper. Extract detailed property listings and market insights from Zillow.com to fuel your real estate analysis, market research, or property investment strategies.

Overview

This Apify actor allows you to scrape detailed property listings from Zillow.com, including property details, pricing information, and geographical data. It's perfect for real estate professionals, investors, and researchers looking to gather insights from the property market.

Features

  • Detailed Property Listings: Extract comprehensive information about each property.
  • Location-based Scraping: Target specific cities or regions for analysis.
  • Customizable Depth: Option to include or exclude detailed property information.
  • Persistent Data Storage:
    • Use custom storage names to preserve data indefinitely, ensuring deduplication and flexibility.
    • Duplicate datasets easily by assigning unique names to storage, enabling long-term analysis or simultaneous projects.
  • Flexible Input: Accept Zillow search result URLs for specific locations or property types.
  • Concurrent Scraping: Efficiently scrape multiple listings with adjustable concurrency.
  • Proxy Support: Built-in proxy configuration to enhance scraping reliability and avoid blocks.

How to Use

  1. Set Up: Ensure you have an Apify account and access to the Apify platform.
  2. Configure Input: Set the Zillow search URL for your desired location (see Input Configuration section).
  3. Adjust Settings: Configure options like including property details, maximum items, concurrency, and proxy settings as needed.
  4. Run the Scraper: Execute the scraper on the Apify platform.
  5. Data Collection: The scraper will output detailed data about the property listings matching your search criteria.

Input Configuration

Here's an example of how to set up the input for the Zillow Cheerio Scraper:

1{
2    "startUrls": [
3        {
4            "url": "https://www.zillow.com/austin-tx"
5        }
6    ],
7    "includePropertyDetails": false,
8    "maxItems": 100,
9    "maxConcurrency": 100,
10    "minConcurrency": 1,
11    "maxRequestRetries": 30,
12    "storeName": "my-custom-storage"
13}

Input Fields Explanation

  • startUrls: Array containing the Zillow search URL for your desired location.
  • includePropertyDetails: Boolean to determine whether to scrape detailed property information (default: false).
  • maxItems: Maximum number of property listings to scrape (default: 100).
  • maxConcurrency: Maximum number of pages processed simultaneously (default: 100).
  • minConcurrency: Minimum number of pages processed simultaneously (default: 1).
  • maxRequestRetries: Number of retries for failed requests (default: 30).
  • storeName (optional):
    • Custom name for the Key-Value Store where listings will be saved.
    • Ensures deduplication and long-term retention by persisting data indefinitely until manual deletion.
    • Facilitates data duplication by allowing multiple datasets to coexist without overwriting.
    • Use alphanumeric characters and hyphens for naming (e.g., my-custom-storage).

Why Use Custom Storage?

  • Persistent Retention: Preserve your data beyond the default retention limits.
  • Data Deduplication: Automatically avoid duplicate entries in your storage.
  • Flexible Project Management: Save multiple datasets by assigning unique storage names for separate projects or analyses.
  • Long-Term Insights: Maintain historical data for comprehensive market trend studies.

Output Structure

The output data includes detailed information about each property listing. Here's a sample of the structure:

1{
2    "zpid": "400822147",
3    "rawHomeStatusCd": "ForSale",
4    "marketingStatusSimplifiedCd": "For Sale by Agent",
5    "imgSrc": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_e.jpg",
6    "hasImage": true,
7    "detailUrl": "/homedetails/7713-Bellehaven-Ct-Austin-TX-78744/400822147_zpid/",
8    "statusType": "FOR_SALE",
9    "statusText": "Home for sale",
10    "price": "$24,000",
11    "priceLabel": "$24K",
12    "address": "7713 Bellehaven Ct, Austin, TX 78744",
13    "beds": 3,
14    "baths": 2,
15    "area": 0,
16    "latLong": {
17        "latitude": 30.173681,
18        "longitude": -97.76701
19    },
20    "flexFieldText": "85 days on Zillow",
21    "flexFieldType": "daysOnZillow",
22    "hdpData": {
23        "homeInfo": {
24            "zpid": 400822147,
25            "streetAddress": "7713 Bellehaven Ct",
26            "zipcode": "78744",
27            "city": "Austin",
28            "state": "TX",
29            "latitude": 30.173681,
30            "longitude": -97.76701,
31            "price": 24000,
32            "bathrooms": 2,
33            "bedrooms": 3,
34            "livingArea": 0,
35            "homeType": "MANUFACTURED",
36            "homeStatus": "FOR_SALE",
37            "daysOnZillow": -1,
38            "isFeatured": false,
39            "shouldHighlight": false,
40            "listing_sub_type": {
41                "is_FSBA": true
42            },
43            "isUnmappable": false,
44            "isPreforeclosureAuction": false,
45            "homeStatusForHDP": "FOR_SALE",
46            "priceForHDP": 24000,
47            "timeOnZillow": 7364293000,
48            "isNonOwnerOccupied": true,
49            "isPremierBuilder": false,
50            "isZillowOwned": false,
51            "currency": "USD",
52            "country": "USA",
53            "isShowcaseListing": false
54        }
55    },
56    "isUserClaimingOwner": false,
57    "isUserConfirmedClaim": false,
58    "pgapt": "ForSale",
59    "sgapt": "For Sale (Broker)",
60    "shouldShowZestimateAsPrice": false,
61    "has3DModel": false,
62    "hasVideo": false,
63    "isHomeRec": false,
64    "hasAdditionalAttributions": true,
65    "isFeaturedListing": false,
66    "isShowcaseListing": false,
67    "listingType": "",
68    "isFavorite": false,
69    "availabilityDate": "2024-07-17 00:00:00",
70    "visited": false,
71    "brokerName": "Central Texas Mobile Home Solutions",
72    "timeOnZillow": 7364293000
73}

Output Fields Explanation

  • zpid: Zillow's unique property identifier.
  • rawHomeStatusCd, marketingStatusSimplifiedCd, statusType, statusText: Various indicators of the property's current status.
  • imgSrc: URL of the main property image.
  • detailUrl: Relative URL for the property's detailed page on Zillow.
  • price, priceLabel: Property price information.
  • address: Full address of the property.
  • beds, baths: Number of bedrooms and bathrooms.
  • area: Living area of the property (if available).
  • latLong: Geographical coordinates of the property.
  • flexFieldText, flexFieldType: Additional property information, such as days on Zillow.
  • hdpData: Detailed home data including additional property characteristics.
  • brokerName: Name of the broker or agency listing the property.
  • timeOnZillow: Time the property has been listed on Zillow (in milliseconds).

Additional fields provide information about the property's features, listing status, and Zillow-specific data.

Detailed Property Information

When includePropertyDetails is set to true, the scraper provides an extensive set of additional information about each property. This detailed data is included in the details field of each property object. Here's an overview of the additional information available:

Detailed Output Structure Part 1

1{
2  "details": {
3      "listingDataSource": "Phoenix",
4      "zpid": 400822147,
5      "city": "Austin",
6      "state": "TX",
7      "homeStatus": "FOR_SALE",
8      "address": {
9          "streetAddress": "7713 Bellehaven Ct",
10          "city": "Austin",
11          "state": "TX",
12          "zipcode": "78744",
13          "neighborhood": null,
14          "community": null,
15          "subdivision": null
16      },
17      "isListingClaimedByCurrentSignedInUser": false,
18      "isCurrentSignedInAgentResponsible": false,
19      "bedrooms": 3,
20      "bathrooms": 2,
21      "price": 24000,
22      "yearBuilt": 1999,
23      "streetAddress": "7713 Bellehaven Ct",
24      "zipcode": "78744",
25      "isCurrentSignedInUserVerifiedOwner": false,
26      "propertyUpdatePageLink": null,
27      "moveHomeMapLocationLink": null,
28      "propertyEventLogLink": null,
29      "editPropertyHistorylink": null,
30      "collections": {
31          "modules": [
32              {
33                  "name": "Similar homes",
34                  "placement": "NEIGHBORHOOD",
35                  "propertyDetails": [
36                      {
37                          "miniCardPhotos": [
38                              {
39                                  "url": "https://photos.zillowstatic.com/fp/519193cd8b62dc83fdbd012384543093-p_c.jpg"
40                              }
41                          ],
42                          "price": 36000,
43                          "currency": "USD",
44                          "bedrooms": 2,
45                          "bathrooms": 2,
46                          "livingArea": 1056,
47                          "livingAreaValue": 1056,
48                          "livingAreaUnits": "Square Feet",
49                          "livingAreaUnitsShort": "sqft",
50                          "listingMetadata": {
51                              "comminglingCategoryIsRulesApplicable": false
52                          },
53                          "lotSize": 4500,
54                          "lotAreaValue": 4500,
55                          "lotAreaUnits": "Square Feet",
56                          "address": {
57                              "streetAddress": "9817 Circle Dr TRAILER 260",
58                              "city": "Austin",
59                              "state": "TX",
60                              "zipcode": "78736"
61                          },
62                          "parentRegion": {
63                              "name": "78736"
64                          },
65                          "formattedChip": {
66                              "location": [
67                                  {
68                                      "fullValue": "9817 Circle Dr TRAILER 260"
69                                  },
70                                  {
71                                      "fullValue": "Austin, TX 78736"
72                                  }
73                              ]
74                          },
75                          "latitude": 30.24516,
76                          "longitude": -97.92577,
77                          "zpid": 114405557,
78                          "homeStatus": "FOR_SALE",
79                          "homeType": "MANUFACTURED",
80                          "hdpUrl": "/homedetails/9817-Circle-Dr-TRAILER-260-Austin-TX-78736/114405557_zpid/",
81                          "hdpTypeDimension": "ForSale",
82                          "propertyTypeDimension": "Manufactured",
83                          "listingTypeDimension": "For Sale by Owner",
84                          "listing_sub_type": {
85                              "is_newHome": false,
86                              "is_forAuction": false,
87                              "is_bankOwned": false,
88                              "is_foreclosure": false,
89                              "is_FSBO": true,
90                              "is_comingSoon": false,
91                              "is_FSBA": false
92                          },
93                          "providerListingID": null,
94                          "attributionInfo": {
95                              "mlsId": "",
96                              "mlsName": null,
97                              "providerLogo": null,
98                              "agentName": null,
99                              "agentPhoneNumber": null,
100                              "brokerName": null,
101                              "brokerPhoneNumber": null,
102                              "trueStatus": null
103                          },
104                          "isShowcaseListing": null,
105                          "isPremierBuilder": false,
106                          "state": "TX",
107                          "newConstructionType": null
108                      }
109                  ]
110              }
111          ],
112          "trackingTags": [
113              {
114                  "value": "fa35153689784028d9219e9940dd94bb"
115              }
116          ]
117      },
118      "listing_sub_type": {
119          "is_forAuction": false,
120          "is_newHome": false,
121          "is_FSBO": false,
122          "is_FSBA": true,
123          "is_foreclosure": false,
124          "is_bankOwned": false,
125          "is_comingSoon": false,
126          "is_pending": false,
127          "is_openHouse": false
128      },
129      "providerListingID": null,
130      "isRentalListingOffMarket": false,
131      "hdpUrl": "/homedetails/7713-Bellehaven-Ct-Austin-TX-78744/400822147_zpid/",
132      "nearbyCities": [
133          {
134              "regionUrl": {
135                  "path": "/austin-tx/"
136              },
137              "name": "Austin",
138              "body": null
139          }
140      ],
141      "nearbyNeighborhoods": [
142          {
143              "regionUrl": {
144                  "path": "/downtown-austin-tx/"
145              },
146              "name": "Downtown",
147              "body": null
148          }
149      ],
150      "country": "USA",
151      "nearbyZipcodes": [
152          {
153              "regionUrl": {
154                  "path": "/austin-tx-78704/"
155              },
156              "name": "78704",
157              "body": null
158          }
159      ],
160      "cityId": 10221,
161      "citySearchUrl": {
162          "text": "Homes in Austin",
163          "path": "/austin-tx/"
164      },
165      "zipcodeSearchUrl": {
166          "path": "/austin-tx-78744/"
167      },
168      "apartmentsForRentInZipcodeSearchUrl": {
169          "path": "/austin-tx-78744/apartments/"
170      },
171      "housesForRentInZipcodeSearchUrl": {
172          "path": "/austin-tx-78744/rent-houses/"
173      },
174      "abbreviatedAddress": "7713 Bellehaven Ct",
175      "county": "Travis County",
176      "neighborhoodRegion": null,
177      "building": null,
178      "isUndisclosedAddress": false,
179      "boroughId": null,
180      "neighborhoodSearchUrl": null,
181      "stateSearchUrl": {
182          "path": "/tx/"
183      },
184      "countySearchUrl": {
185          "text": "Homes in Travis County",
186          "path": "/travis-county-tx/"
187      },
188      "boroughSearchUrl": null,
189      "communityUrl": null,
190      "isShowcaseListing": false,
191      "isPremierBuilder": false,
192      "homeType": "MANUFACTURED",
193      "adTargets": {
194          "zip": "78744",
195          "aamgnrc1": "7713 Bellehaven Ct",
196          "mlat": "30.173681",
197          "bd": "3",
198          "fsbid": "17925",
199          "zusr": "true",
200          "city": "Austin",
201          "proptp": "mm",
202          "pid": "400822147",
203          "yrblt": "1990-1999",
204          "listtp": "buy_agent",
205          "premieragent": "no",
206          "sqftrange": "0-499",
207          "price": "24000",
208          "dma": "187",
209          "guid": "9b31f31c-0513-4cdb-8e4b-63f4051ad493",
210          "sqft": "0",
211          "state": "TX",
212          "mlong": "-97.76701",
213          "cnty": "Travis",
214          "prange": "0-100k",
215          "ssid": "17925"
216      },
217      "attributionInfo": {
218          "listingAgreement": "Exclusive",
219          "mlsName": "My State MLS",
220          "agentEmail": null,
221          "agentLicenseNumber": null,
222          "agentName": "Dominic Mcclung",
223          "agentPhoneNumber": null,
224          "attributionTitle": null,
225          "brokerName": "Central Texas Mobile Home Solutions",
226          "brokerPhoneNumber": null,
227          "buyerAgentMemberStateLicense": null,
228          "buyerAgentName": null,
229          "buyerBrokerageName": null,
230          "coAgentLicenseNumber": null,
231          "coAgentName": null,
232          "coAgentNumber": null,
233          "lastChecked": "2024-10-10 12:43:19",
234          "lastUpdated": "2024-09-09 09:04:54",
235          "listingOffices": [
236              {
237                  "associatedOfficeType": "listOffice",
238                  "officeName": "Central Texas Mobile Home Solutions"
239              },
240              {
241                  "associatedOfficeType": "buyerOffice",
242                  "officeName": null
243              }
244          ],
245          "listingAgents": [
246              {
247                  "associatedAgentType": "listAgent",
248                  "memberFullName": "Dominic Mcclung",
249                  "memberStateLicense": null
250              },
251              {
252                  "associatedAgentType": "coListAgent",
253                  "memberFullName": null,
254                  "memberStateLicense": null
255              },
256              {
257                  "associatedAgentType": "buyerAgent",
258                  "memberFullName": null,
259                  "memberStateLicense": null
260              }
261          ],
262          "mlsDisclaimer": "",
263          "mlsId": "11323145",
264          "providerLogo": null,
265          "infoString3": null,
266          "infoString5": null,
267          "infoString10": "",
268          "infoString16": null,
269          "trueStatus": null
270      },
271      "currency": "USD",
272      "interactiveFloorPlanUrl": "",
273      "lotPremium": null,
274      "listPriceLow": null,
275      "resoFacts": {
276          "aboveGradeFinishedArea": "0",
277          "accessibilityFeatures": null,
278          "additionalFeeInfo": null,
279          "additionalParcelsDescription": null,
280          "architecturalStyle": null,
281          "associations": [],
282          "associationFee": null,
283          "associationAmenities": null,
284          "associationFee2": null,
285          "associationFeeIncludes": null,
286          "associationName": null,
287          "associationName2": null,
288          "associationPhone": null,
289          "associationPhone2": null,
290          "basementYN": false,
291          "buildingFeatures": null,
292          "buildingName": null,
293          "appliances": null,
294          "atAGlanceFacts": [
295              {
296                  "factLabel": "Type",
297                  "factValue": "Manufactured Home"
298              }
299          ],
300          "attic": null,
301          "availabilityDate": 1721174400000,
302          "basement": null,
303          "bathrooms": 2,
304          "bathroomsFull": 2,
305          "bathroomsHalf": 0,
306          "bathroomsOneQuarter": null,
307          "bathroomsPartial": null,
308          "bathroomsFloat": 2,
309          "bathroomsThreeQuarter": null,
310          "bedrooms": 3,
311          "belowGradeFinishedArea": null,
312          "bodyType": null,
313          "builderModel": null,
314          "builderName": null,
315          "buildingArea": "0",
316          "buildingAreaSource": null,
317          "canRaiseHorses": false,
318          "carportParkingCapacity": null,
319          "cityRegion": "Austin",
320          "commonWalls": null,
321          "communityFeatures": null,
322          "compensationBasedOn": null,
323          "constructionMaterials": [],
324          "contingency": null,
325          "cooling": null,
326          "coveredParkingCapacity": 0,
327          "cropsIncludedYN": null,
328          "cumulativeDaysOnMarket": null,
329          "developmentStatus": null,
330          "doorFeatures": null,
331          "electric": ["Amps(0)"],
332          "elevation": null,
333          "elevationUnits": null,
334          "entryLevel": null,
335          "entryLocation": null,
336          "exclusions": null,
337          "exteriorFeatures": [],
338          "feesAndDues": [
339              {
340                  "type": "HOA",
341                  "fee": null,
342                  "name": null,
343                  "phone": null
344              }
345          ],
346          "fencing": null,
347          "fireplaceFeatures": null,
348          "fireplaces": 0,
349          "flooring": null,
350          "foundationArea": null,
351          "foundationDetails": [],
352          "frontageLength": null,
353          "frontageType": null,
354          "furnished": false,
355          "garageParkingCapacity": 0,
356          "gas": null,
357          "greenBuildingVerificationType": null,
358          "greenEnergyEfficient": null,
359          "greenEnergyGeneration": null,
360          "greenIndoorAirQuality": null,
361          "greenSustainability": null,
362          "greenWaterConservation": null,
363          "hasAdditionalParcels": false,
364          "hasAssociation": false,
365          "hasAttachedGarage": null,
366          "hasAttachedProperty": false,
367          "hasCooling": null,
368          "hasCarport": null,
369          "hasElectricOnProperty": null,
370          "hasFireplace": false,
371          "hasGarage": false,
372          "hasHeating": true,
373          "hasHomeWarranty": false,
374          "hasLandLease": true,
375          "hasOpenParking": null,
376          "hasRentControl": null,
377          "hasSpa": false,
378          "hasPetsAllowed": null,
379          "hasPrivatePool": null,
380          "hasView": false,
381          "hasWaterfrontView": null,
382          "heating": ["Has Heating (Unspecified Type)"],
383          "highSchool": null,
384          "highSchoolDistrict": null,
385          "hoaFee": null,
386          "hoaFeeTotal": null,
387          "homeType": "MobileManufactured",
388          "horseAmenities": null,
389          "horseYN": null,
390          "inclusions": null,
391          "incomeIncludes": null,
392          "interiorFeatures": null,
393          "irrigationWaterRightsAcres": null,
394          "irrigationWaterRightsYN": null,
395          "isNewConstruction": false,
396          "isSeniorCommunity": null,
397          "landLeaseAmount": "825",
398          "landLeaseExpirationDate": null,
399          "laundryFeatures": null,
400          "leaseTerm": null,
401          "levels": null,
402          "listingId": null,
403          "listingTerms": null,
404          "lotFeatures": ["Pool"],
405          "lotSize": null,
406          "lotSizeDimensions": null,
407          "livingArea": null,
408          "livingAreaRange": null,
409          "livingAreaRangeUnits": null,
410          "livingQuarters": [],
411          "mainLevelBathrooms": null,
412          "mainLevelBedrooms": null,
413          "marketingType": null,
414          "middleOrJuniorSchool": null,
415          "middleOrJuniorSchoolDistrict": null,
416          "municipality": null,
417          "numberOfUnitsInCommunity": null,
418          "numberOfUnitsVacant": null,
419          "offerReviewDate": null,
420          "onMarketDate": 1721225290000,
421          "openParkingCapacity": null,
422          "otherEquipment": null,
423          "otherFacts": [],
424          "otherParking": null,
425          "otherStructures": null,
426          "ownership": null,
427          "ownershipType": null,
428          "parcelNumber": null,
429          "parkingCapacity": 0,
430          "parkingFeatures": [],
431          "parkName": null,
432          "patioAndPorchFeatures": null,
433          "petsMaxWeight": null,
434          "poolFeatures": null,
435          "pricePerSquareFoot": null,
436          "propertyCondition": null,
437          "propertySubType": ["Manufactured Home"],
438          "roadSurfaceType": null,
439          "roofType": null,
440          "rooms": [
441              {
442                  "area": null,
443                  "description": null,
444                  "dimensions": null,
445                  "level": null,
446                  "features": null,
447                  "roomArea": "0",
448                  "roomAreaSource": null,
449                  "roomAreaUnits": null,
450                  "roomDescription": null,
451                  "roomDimensions": null,
452                  "roomFeatures": null,
453                  "roomLength": null,
454                  "roomLengthWidthSource": null,
455                  "roomLengthWidthUnits": null,
456                  "roomLevel": null,
457                  "roomType": "Basement",
458                  "roomWidth": null
459              }
460          ],
461          "roomTypes": null,
462          "securityFeatures": null,
463          "sewer": null,
464          "spaFeatures": null,
465          "specialListingConditions": null,
466          "stories": null,
467          "storiesDecimal": null,
468          "storiesTotal": null,
469          "structureType": null,
470          "subdivisionName": "Chateau At Onion Creek",
471          "taxAnnualAmount": null,
472          "taxAssessedValue": null,
473          "tenantPays": null,
474          "topography": null,
475          "totalActualRent": null,
476          "utilities": null,
477          "vegetation": null,
478          "view": [],
479          "virtualTour": null,
480          "waterSource": null,
481          "waterBodyName": null,
482          "waterfrontFeatures": null,
483          "waterView": null,
484          "waterViewYN": false,
485          "windowFeatures": null,
486          "woodedArea": null,
487          "yearBuilt": 1999,
488          "yearBuiltEffective": null,
489          "zoning": null,
490          "zoningDescription": null,
491          "elementarySchool": null,
492          "elementarySchoolDistrict": null,
493          "listAOR": null
494      },
495      "monthlyHoaFee": null,
496      "livingArea": 0,
497      "livingAreaValue": 0,
498      "zestimate": null,
499      "newConstructionType": null,
500      "zestimateLowPercent": null,
501      "zestimateHighPercent": null,
502      "rentZestimate": null,
503      "restimateLowPercent": null,
504      "restimateHighPercent": null,
505      "schools": [
506          {
507              "distance": 0.7,
508              "name": "Perez Elementary School",
509              "rating": 2,
510              "level": "Primary",
511              "studentsPerTeacher": null,
512              "assigned": null,
513              "grades": "PK-6",
514              "link": "https://www.greatschools.org/texas/austin/10795-Perez-Elementary-School/",
515              "type": "Public",
516              "size": null,
517              "totalCount": null,
518              "isAssigned": null
519          },
520          {
521              "distance": 2.7,
522              "name": "Paredes Middle School",
523              "rating": 3,
524              "level": "Middle",
525              "studentsPerTeacher": null,
526              "assigned": null,
527              "grades": "6-8",
528              "link": "https://www.greatschools.org/texas/austin/9472-Paredes-Middle-School/",
529              "type": "Public",
530              "size": null,
531              "totalCount": null,
532              "isAssigned": null
533          },
534          {
535              "distance": 2.6,
536              "name": "Akins High School",
537              "rating": 4,
538              "level": "High",
539              "studentsPerTeacher": null,
540              "assigned": null,
541              "grades": "9-12",
542              "link": "https://www.greatschools.org/texas/austin/9663-Akins-High-School/",
543              "type": "Public",
544              "size": null,
545              "totalCount": null,
546              "isAssigned": null
547          }
548      ],
549      "homeValues": null,
550      "parentRegion": {
551          "name": "78744"
552      },
553      "nearbyHomes": [
554          {
555              "zpid": 145656068,
556              "miniCardPhotos": [
557                  {
558                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.173768997192383,-97.76691436767578&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=YVz1yAdf85y8lGZtqMT6UM06wfk="
559                  }
560              ],
561              "price": 22273,
562              "currency": "USD",
563              "bedrooms": 0,
564              "bathrooms": 0,
565              "livingArea": 1344,
566              "livingAreaValue": 1344,
567              "livingAreaUnits": "Square Feet",
568              "livingAreaUnitsShort": "sqft",
569              "listingMetadata": {
570                  "comminglingCategoryIsRulesApplicable": false
571              },
572              "lotSize": null,
573              "lotAreaValue": null,
574              "lotAreaUnits": "sqft",
575              "address": {
576                  "streetAddress": "7717 Bell Haven Ct #98",
577                  "city": "Austin",
578                  "state": "TX",
579                  "zipcode": "78744"
580              },
581              "parentRegion": null,
582              "formattedChip": {
583                  "location": [
584                      {
585                          "fullValue": "7717 Bell Haven Ct #98"
586                      },
587                      {
588                          "fullValue": null
589                      }
590                  ]
591              },
592              "latitude": 30.173769,
593              "longitude": -97.766914,
594              "homeStatus": "OTHER",
595              "homeType": "MANUFACTURED",
596              "hdpUrl": "/homedetails/7717-Bell-Haven-Ct-98-Austin-TX-78744/145656068_zpid/",
597              "hdpTypeDimension": "NoZestimate",
598              "propertyTypeDimension": "Manufactured",
599              "listingTypeDimension": "Unknown Listed By",
600              "listing_sub_type": {
601                  "is_newHome": false,
602                  "is_forAuction": false,
603                  "is_bankOwned": false,
604                  "is_foreclosure": false,
605                  "is_FSBO": false,
606                  "is_comingSoon": false,
607                  "is_FSBA": false
608              },
609              "providerListingID": null,
610              "attributionInfo": {
611                  "mlsId": null,
612                  "mlsName": null,
613                  "providerLogo": null,
614                  "agentName": null,
615                  "agentPhoneNumber": null,
616                  "brokerName": null,
617                  "brokerPhoneNumber": null,
618                  "trueStatus": null
619              },
620              "isShowcaseListing": false,
621              "isPremierBuilder": false,
622              "state": "TX",
623              "newConstructionType": null
624          },
625          {
626              "zpid": 251034445,
627              "miniCardPhotos": [
628                  {
629                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.173768997192383,-97.76691436767578&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=YVz1yAdf85y8lGZtqMT6UM06wfk="
630                  }
631              ],
632              "price": 68931,
633              "currency": "USD",
634              "bedrooms": 0,
635              "bathrooms": 0,
636              "livingArea": 1440,
637              "livingAreaValue": 1440,
638              "livingAreaUnits": "Square Feet",
639              "livingAreaUnitsShort": "sqft",
640              "listingMetadata": {
641                  "comminglingCategoryIsRulesApplicable": false
642              },
643              "lotSize": null,
644              "lotAreaValue": null,
645              "lotAreaUnits": "sqft",
646              "address": {
647                  "streetAddress": "7717 Bell Haven Ct #98",
648                  "city": "Austin",
649                  "state": "TX",
650                  "zipcode": "78744"
651              },
652              "parentRegion": null,
653              "formattedChip": {
654                  "location": [
655                      {
656                          "fullValue": "7717 Bell Haven Ct #98"
657                      },
658                      {
659                          "fullValue": null
660                      }
661                  ]
662              },
663              "latitude": 30.173769,
664              "longitude": -97.766914,
665              "homeStatus": "OTHER",
666              "homeType": "MANUFACTURED",
667              "hdpUrl": "/homedetails/7717-Bell-Haven-Ct-98-Austin-TX-78744/251034445_zpid/",
668              "hdpTypeDimension": "NoZestimate",
669              "propertyTypeDimension": "Manufactured",
670              "listingTypeDimension": "Unknown Listed By",
671              "listing_sub_type": {
672                  "is_newHome": false,
673                  "is_forAuction": false,
674                  "is_bankOwned": false,
675                  "is_foreclosure": false,
676                  "is_FSBO": false,
677                  "is_comingSoon": false,
678                  "is_FSBA": false
679              },
680              "providerListingID": null,
681              "attributionInfo": {
682                  "mlsId": null,
683                  "mlsName": null,
684                  "providerLogo": null,
685                  "agentName": null,
686                  "agentPhoneNumber": null,
687                  "brokerName": null,
688                  "brokerPhoneNumber": null,
689                  "trueStatus": null
690              },
691              "isShowcaseListing": false,
692              "isPremierBuilder": false,
693              "state": "TX",
694              "newConstructionType": null
695          },
696          {
697              "zpid": 121655156,
698              "miniCardPhotos": [
699                  {
700                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.173669815063477,-97.76677703857422&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=ov1d-aB0oFCxrKwx0wD4SngWWvY="
701                  }
702              ],
703              "price": 23247,
704              "currency": "USD",
705              "bedrooms": null,
706              "bathrooms": null,
707              "livingArea": 1344,
708              "livingAreaValue": 1344,
709              "livingAreaUnits": "Square Feet",
710              "livingAreaUnitsShort": "sqft",
711              "listingMetadata": {
712                  "comminglingCategoryIsRulesApplicable": false
713              },
714              "lotSize": null,
715              "lotAreaValue": null,
716              "lotAreaUnits": "sqft",
717              "address": {
718                  "streetAddress": "7713 Bell Haven Ct #99",
719                  "city": "Austin",
720                  "state": "TX",
721                  "zipcode": "78744"
722              },
723              "parentRegion": null,
724              "formattedChip": {
725                  "location": [
726                      {
727                          "fullValue": "7713 Bell Haven Ct #99"
728                      },
729                      {
730                          "fullValue": null
731                      }
732                  ]
733              },
734              "latitude": 30.17367,
735              "longitude": -97.76678,
736              "homeStatus": "OTHER",
737              "homeType": "MANUFACTURED",
738              "hdpUrl": "/homedetails/7713-Bell-Haven-Ct-99-Austin-TX-78744/121655156_zpid/",
739              "hdpTypeDimension": "NoZestimate",
740              "propertyTypeDimension": "Manufactured",
741              "listingTypeDimension": "Unknown Listed By",
742              "listing_sub_type": {
743                  "is_newHome": false,
744                  "is_forAuction": false,
745                  "is_bankOwned": false,
746                  "is_foreclosure": false,
747                  "is_FSBO": false,
748                  "is_comingSoon": false,
749                  "is_FSBA": false
750              },
751              "providerListingID": null,
752              "attributionInfo": {
753                  "mlsId": null,
754                  "mlsName": null,
755                  "providerLogo": null,
756                  "agentName": null,
757                  "agentPhoneNumber": null,
758                  "brokerName": null,
759                  "brokerPhoneNumber": null,
760                  "trueStatus": null
761              },
762              "isShowcaseListing": false,
763              "isPremierBuilder": false,
764              "state": "TX",
765              "newConstructionType": null
766          },
767          {
768              "zpid": 145655756,
769              "miniCardPhotos": [
770                  {
771                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.17337989807129,-97.76716613769531&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=S4wBC8gaL0-U97g55_p6ETYl2S0="
772                  }
773              ],
774              "price": 22439,
775              "currency": "USD",
776              "bedrooms": 0,
777              "bathrooms": 0,
778              "livingArea": 1568,
779              "livingAreaValue": 1568,
780              "livingAreaUnits": "Square Feet",
781              "livingAreaUnitsShort": "sqft",
782              "listingMetadata": {
783                  "comminglingCategoryIsRulesApplicable": false
784              },
785              "lotSize": null,
786              "lotAreaValue": null,
787              "lotAreaUnits": "sqft",
788              "address": {
789                  "streetAddress": "2330 Chateau Village Way #141",
790                  "city": "Austin",
791                  "state": "TX",
792                  "zipcode": "78744"
793              },
794              "parentRegion": null,
795              "formattedChip": {
796                  "location": [
797                      {
798                          "fullValue": "2330 Chateau Village Way #141"
799                      },
800                      {
801                          "fullValue": null
802                      }
803                  ]
804              },
805              "latitude": 30.17338,
806              "longitude": -97.767166,
807              "homeStatus": "OTHER",
808              "homeType": "MANUFACTURED",
809              "hdpUrl": "/homedetails/2330-Chateau-Village-Way-141-Austin-TX-78744/145655756_zpid/",
810              "hdpTypeDimension": "NoZestimate",
811              "propertyTypeDimension": "Manufactured",
812              "listingTypeDimension": "Unknown Listed By",
813              "listing_sub_type": {
814                  "is_newHome": false,
815                  "is_forAuction": false,
816                  "is_bankOwned": false,
817                  "is_foreclosure": false,
818                  "is_FSBO": false,
819                  "is_comingSoon": false,
820                  "is_FSBA": false
821              },
822              "providerListingID": null,
823              "attributionInfo": {
824                  "mlsId": null,
825                  "mlsName": null,
826                  "providerLogo": null,
827                  "agentName": null,
828                  "agentPhoneNumber": null,
829                  "brokerName": null,
830                  "brokerPhoneNumber": null,
831                  "trueStatus": null
832              },
833              "isShowcaseListing": false,
834              "isPremierBuilder": false,
835              "state": "TX",
836              "newConstructionType": null
837          },
838          {
839              "zpid": 2100853537,
840              "miniCardPhotos": [
841                  {
842                      "url": "https://photos.zillowstatic.com/fp/28172de4bd7b260d45c503c2b8bd9730-p_c.jpg"
843                  }
844              ],
845              "price": 233500,
846              "currency": "USD",
847              "bedrooms": 3,
848              "bathrooms": 2,
849              "livingArea": 1512,
850              "livingAreaValue": 1512,
851              "livingAreaUnits": "Square Feet",
852              "livingAreaUnitsShort": "sqft",
853              "listingMetadata": {
854                  "comminglingCategoryIsRulesApplicable": false
855              },
856              "lotSize": null,
857              "lotAreaValue": null,
858              "lotAreaUnits": "sqft",
859              "address": {
860                  "streetAddress": "7717 Belhaven Ct",
861                  "city": "Austin",
862                  "state": "TX",
863                  "zipcode": "78744"
864              },
865              "parentRegion": null,
866              "formattedChip": {
867                  "location": [
868                      {
869                          "fullValue": "7717 Belhaven Ct"
870                      },
871                      {
872                          "fullValue": null
873                      }
874                  ]
875              },
876              "latitude": 30.17367,
877              "longitude": -97.76662,
878              "homeStatus": "OTHER",
879              "homeType": "MANUFACTURED",
880              "hdpUrl": "/homedetails/7717-Belhaven-Ct-Austin-TX-78744/2100853537_zpid/",
881              "hdpTypeDimension": "Zestimate",
882              "propertyTypeDimension": "Manufactured",
883              "listingTypeDimension": "Unknown Listed By",
884              "listing_sub_type": {
885                  "is_newHome": false,
886                  "is_forAuction": false,
887                  "is_bankOwned": false,
888                  "is_foreclosure": false,
889                  "is_FSBO": false,
890                  "is_comingSoon": false,
891                  "is_FSBA": false
892              },
893              "providerListingID": null,
894              "attributionInfo": {
895                  "mlsId": null,
896                  "mlsName": null,
897                  "providerLogo": null,
898                  "agentName": null,
899                  "agentPhoneNumber": null,
900                  "brokerName": null,
901                  "brokerPhoneNumber": null,
902                  "trueStatus": null
903              },
904              "isShowcaseListing": false,
905              "isPremierBuilder": false,
906              "state": "TX",
907              "newConstructionType": null
908          },
909          {
910              "zpid": 124844582,
911              "miniCardPhotos": [
912                  {
913                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.173341751098633,-97.7672348022461&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=E9Kr2tPJzgS0lSxxBKU3yGl2tz8="
914                  }
915              ],
916              "price": 23412,
917              "currency": "USD",
918              "bedrooms": null,
919              "bathrooms": null,
920              "livingArea": 1568,
921              "livingAreaValue": 1568,
922              "livingAreaUnits": "Square Feet",
923              "livingAreaUnitsShort": "sqft",
924              "listingMetadata": {
925                  "comminglingCategoryIsRulesApplicable": false
926              },
927              "lotSize": null,
928              "lotAreaValue": null,
929              "lotAreaUnits": "sqft",
930              "address": {
931                  "streetAddress": "2326 Chateau Village Way #142",
932                  "city": "Austin",
933                  "state": "TX",
934                  "zipcode": "78744"
935              },
936              "parentRegion": null,
937              "formattedChip": {
938                  "location": [
939                      {
940                          "fullValue": "2326 Chateau Village Way #142"
941                      },
942                      {
943                          "fullValue": null
944                      }
945                  ]
946              },
947              "latitude": 30.173342,
948              "longitude": -97.767235,
949              "homeStatus": "OTHER",
950              "homeType": "MANUFACTURED",
951              "hdpUrl": "/homedetails/2326-Chateau-Village-Way-142-Austin-TX-78744/124844582_zpid/",
952              "hdpTypeDimension": "NoZestimate",
953              "propertyTypeDimension": "Manufactured",
954              "listingTypeDimension": "Unknown Listed By",
955              "listing_sub_type": {
956                  "is_newHome": false,
957                  "is_forAuction": false,
958                  "is_bankOwned": false,
959                  "is_foreclosure": false,
960                  "is_FSBO": false,
961                  "is_comingSoon": false,
962                  "is_FSBA": false
963              },
964              "providerListingID": null,
965              "attributionInfo": {
966                  "mlsId": null,
967                  "mlsName": null,
968                  "providerLogo": null,
969                  "agentName": null,
970                  "agentPhoneNumber": null,
971                  "brokerName": null,
972                  "brokerPhoneNumber": null,
973                  "trueStatus": null
974              },
975              "isShowcaseListing": false,
976              "isPremierBuilder": false,
977              "state": "TX",
978              "newConstructionType": null
979          },
980          {
981              "zpid": 58316946,
982              "miniCardPhotos": [
983                  {
984                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.17399024963379,-97.7667236328125&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=JwIoPzWBZx3mPFXZOTqJL5DXgBY="
985                  }
986              ],
987              "price": 30943,
988              "currency": "USD",
989              "bedrooms": null,
990              "bathrooms": null,
991              "livingArea": 2128,
992              "livingAreaValue": 2128,
993              "livingAreaUnits": "Square Feet",
994              "livingAreaUnitsShort": "sqft",
995              "listingMetadata": {
996                  "comminglingCategoryIsRulesApplicable": false
997              },
998              "lotSize": null,
999              "lotAreaValue": null,
1000              "lotAreaUnits": "sqft",
1001              "address": {
1002                  "streetAddress": "7716 Bell Haven Ct #97",
1003                  "city": "Austin",
1004                  "state": "TX",
1005                  "zipcode": "78744"
1006              },
1007              "parentRegion": null,
1008              "formattedChip": {
1009                  "location": [
1010                      {
1011                          "fullValue": "7716 Bell Haven Ct #97"
1012                      },
1013                      {
1014                          "fullValue": null
1015                      }
1016                  ]
1017              },
1018              "latitude": 30.17399,
1019              "longitude": -97.76672,
1020              "homeStatus": "OTHER",
1021              "homeType": "MANUFACTURED",
1022              "hdpUrl": "/homedetails/7716-Bell-Haven-Ct-97-Austin-TX-78744/58316946_zpid/",
1023              "hdpTypeDimension": "NoZestimate",
1024              "propertyTypeDimension": "Manufactured",
1025              "listingTypeDimension": "Unknown Listed By",
1026              "listing_sub_type": {
1027                  "is_newHome": false,
1028                  "is_forAuction": false,
1029                  "is_bankOwned": false,
1030                  "is_foreclosure": false,
1031                  "is_FSBO": false,
1032                  "is_comingSoon": false,
1033                  "is_FSBA": false
1034              },
1035              "providerListingID": null,
1036              "attributionInfo": {
1037                  "mlsId": null,
1038                  "mlsName": null,
1039                  "providerLogo": null,
1040                  "agentName": null,
1041                  "agentPhoneNumber": null,
1042                  "brokerName": null,
1043                  "brokerPhoneNumber": null,
1044                  "trueStatus": null
1045              },
1046              "isShowcaseListing": false,
1047              "isPremierBuilder": false,
1048              "state": "TX",
1049              "newConstructionType": null
1050          },
1051          {
1052              "zpid": 80101146,
1053              "miniCardPhotos": [
1054                  {
1055                      "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=30.17391586303711,-97.7666244506836&key=AIzaSyBJsNQO5ZeG-XAbqqWLKwG08fWITSxg33w&&signature=FmWb_iHoglylzyX6Js-C8KI0MVQ="
1056                  }
1057              ],
1058              "price": 20929,
1059              "currency": "USD",
1060              "bedrooms": null,
1061              "bathrooms": null,
1062              "livingArea": 1680,
1063              "livingAreaValue": 1680,
1064              "livingAreaUnits": "Square Feet",
1065              "livingAreaUnitsShort": "sqft",
1066              "listingMetadata": {
1067                  "comminglingCategoryIsRulesApplicable": false
1068              },
1069              "lotSize": null,
1070              "lotAreaValue": null,
1071              "lotAreaUnits": "sqft",
1072              "address": {
1073                  "streetAddress": "7712 Bell Haven Ct #96",
1074                  "city": "Austin",
1075                  "state": "TX",
1076                  "zipcode": "78744"
1077              },
1078              "parentRegion": null,
1079              "formattedChip": {
1080                  "location": [
1081                      {
1082                          "fullValue": "7712 Bell Haven Ct #96"
1083                      },
1084                      {
1085                          "fullValue": null
1086                      }
1087                  ]
1088              },
1089              "latitude": 30.173916,
1090              "longitude": -97.766624,
1091              "homeStatus": "OTHER",
1092              "homeType": "MANUFACTURED",
1093              "hdpUrl": "/homedetails/7712-Bell-Haven-Ct-96-Austin-TX-78744/80101146_zpid/",
1094              "hdpTypeDimension": "NoZestimate",
1095              "propertyTypeDimension": "Manufactured",
1096              "listingTypeDimension": "Unknown Listed By",
1097              "listing_sub_type": {
1098                  "is_newHome": false,
1099                  "is_forAuction": false,
1100                  "is_bankOwned": false,
1101                  "is_foreclosure": false,
1102                  "is_FSBO": false,
1103                  "is_comingSoon": false,
1104                  "is_FSBA": false
1105              },
1106              "providerListingID": null,
1107              "attributionInfo": {
1108                  "mlsId": null,
1109                  "mlsName": null,
1110                  "providerLogo": null,
1111                  "agentName": null,
1112                  "agentPhoneNumber": null,
1113                  "brokerName": null,
1114                  "brokerPhoneNumber": null,
1115                  "trueStatus": null
1116              },
1117              "isShowcaseListing": false,
1118              "isPremierBuilder": false,
1119              "state": "TX",
1120              "newConstructionType": null
1121          }
1122      ],
1123      "description": "This home MUST BE MOVED and is currently located in Austin, TX. The home was built in 1999. The exterior of the home is in great shape however, the interior needs some H-VAC, flooring and cosmetic repairs.",
1124      "whatILove": null,
1125      "contingentListingType": null,
1126      "timeOnZillow": "85 days",
1127      "pageViewCount": 4825,
1128      "favoriteCount": 122,
1129      "daysOnZillow": 85,
1130      "latitude": 30.173681,
1131      "longitude": -97.76701,
1132      "openHouseSchedule": [],
1133      "desktopWebHdpImageLink": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_h.jpg",
1134      "brokerageName": "Central Texas Mobile Home Solutions",
1135      "timeZone": "America/Chicago",
1136      "listingMetadata": {
1137          "mustAttributeOfficeNameBeforeAgentName": false,
1138          "mustDisplayAttributionListAgentEmail": false,
1139          "mustDisplayAttributionListAgentPhone": true,
1140          "mustDisplayAttributionListingOfficePhone": false,
1141          "mustDisplayDisclaimerBelowAttribution": false,
1142          "mustHighlightAgentName": null,
1143          "mustHighlightListOfficeName": false,
1144          "mustMakeListingAgentContactable": true,
1145          "FlexibleLayoutAB": true,
1146          "isAdsRestricted": false,
1147          "mustPreferMlsPhotos": false,
1148          "canShowPrequalifiedLinkInChip": true,
1149          "FlexibleLayoutB": true,
1150          "FlexibleLayoutC": true,
1151          "FlexibleLayoutD": true,
1152          "FlexibleLayoutE": true,
1153          "FlexibleLayoutF": false,
1154          "FlexibleLayoutG": false,
1155          "FlexibleLayoutH": true,
1156          "FlexibleLayoutI": true,
1157          "FlexibleLayoutJ": false,
1158          "FlexibleLayoutK": false,
1159          "FlexibleLayoutL": false,
1160          "FlexibleLayoutM": true,
1161          "FlexibleLayoutN": true,
1162          "FlexibleLayoutO": true,
1163          "FlexibleLayoutP": true,
1164          "FlexibleLayoutQ": false,
1165          "FlexibleLayoutR": true,
1166          "FlexibleLayoutS": false,
1167          "FlexibleLayoutT": false,
1168          "FlexibleLayoutU": false,
1169          "FlexibleLayoutV": false,
1170          "FlexibleLayoutW": false,
1171          "FlexibleLayoutX": true,
1172          "FlexibleLayoutY": false,
1173          "FlexibleLayoutZ": false,
1174          "FlexibleLayoutAA": true,
1175          "passwordRequiredForZestimateMarketAnalysis": false,
1176          "canShowAutomatedValuationDisplay": true,
1177          "canShowTaxHistory": true,
1178          "canShowPriceHistory": true,
1179          "canShowUserGeneratedContent": true,
1180          "hidePriceAdjustmentFlexField": false,
1181          "canCommingleComparables": true,
1182          "canShowComparables": true,
1183          "isSuperTrafficOptimized": false,
1184          "mustDisplayFeedLogoInContactBox": false,
1185          "canShowCroppedPhotos": true,
1186          "canShowNonIDXMedia": true,
1187          "canShowOnMap": true,
1188          "comminglingCategory": true,
1189          "mustDisplayAttributionAboveLocalFacts": false,
1190          "mustDisplayAuctionStatusAsSold": false,
1191          "mustHighlightMlsId": null,
1192          "mustHighlightMlsStatus": false,
1193          "mustHighlightMarketingType": false,
1194          "canShowZillowLogoInHeader": true,
1195          "comminglingCategoryIsRulesApplicable": true
1196      },
1197      "pals": [],
1198      "listedBy": [
1199          {
1200              "id": "LISTING_AGENT",
1201              "elements": [
1202                  {
1203                      "id": "NAME",
1204                      "text": "Dominic Mcclung",
1205                      "action": {
1206                          "variant": "SELLER_AGENT",
1207                          "url": "/contact/NativeAppContactForm.htm?zpid=400822147&preferredVariant=seller_agent"
1208                      }
1209                  }
1210              ],
1211              "textStyle": null
1212          },
1213          {
1214              "id": "BROKER",
1215              "elements": [
1216                  {
1217                      "id": "NAME",
1218                      "text": "Central Texas Mobile Home Solutions",
1219                      "action": null
1220                  }
1221              ],
1222              "textStyle": null
1223          }
1224      ],
1225      "homeInsights": [
1226          {
1227              "insights": [
1228                  {
1229                      "modelId": "z-nrt-pdc-llm-tags",
1230                      "treatmentId": "model_1",
1231                      "phrases": []
1232                  }
1233              ]
1234          }
1235      ],
1236      "sellingSoon": [
1237          {
1238              "treatmentId": "model_0",
1239              "percentile": 0.5
1240          }
1241      ],
1242      "listingProvider": null,
1243      "isIncomeRestricted": null,
1244      "brokerId": null,
1245      "ssid": 17925,
1246      "mortgageZHLRates": {
1247          "fifteenYearFixedBucket": {
1248              "rate": null,
1249              "rateSource": "ZGMI",
1250              "lastUpdated": 1728587445079
1251          },
1252          "thirtyYearFixedBucket": {
1253              "rate": null,
1254              "rateSource": "ZGMI",
1255              "lastUpdated": 1728587445079
1256          },
1257          "arm5Bucket": {
1258              "rate": null,
1259              "rateSource": "ZGMI",
1260              "lastUpdated": 1728587445079
1261          }
1262      },
1263      "propertyTaxRate": 1.27,
1264      "hiResImageLink": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_f.jpg",
1265      "hdpTypeDimension": "ForSale",
1266      "mlsid": "11323145",
1267      "ouid": "STATEMLS",
1268      "propertyTypeDimension": "Manufactured",
1269      "mediumImageLink": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_d.jpg",
1270      "isZillowOwned": false,
1271      "enhancedBrokerImageUrl": null,
1272      "listingAccountUserId": "X1-ZU1485unhpnf2fd_376mf",
1273      "tourEligibility": {
1274          "isPropertyTourEligible": false,
1275          "propertyTourOptions": {
1276              "isFinal": true,
1277              "tourAvailability": [],
1278              "tourType": "NONE"
1279          }
1280      },
1281      "responsivePhotos": [
1282          {
1283              "mixedSources": {
1284                  "jpeg": [
1285                      {
1286                          "url": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-cc_ft_192.jpg",
1287                          "width": 192
1288                      }
1289                  ]
1290              },
1291              "caption": "",
1292              "subjectType": null,
1293              "url": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_d.jpg"
1294          }
1295      ],
1296      "submitFlow": [
1297          {
1298              "__typename": "PropertyLeadSubmitForm",
1299              "financingCheckbox": {
1300                  "initialClickstreamMetadata": {
1301                      "onPageView": {
1302                          "semantic": {
1303                              "semantic_event_nm": "view_content",
1304                              "topic_tag_txt": []
1305                          },
1306                          "envelope": {
1307                              "event_template_id": "374",
1308                              "event_template_version_id": "1",
1309                              "event_type_id": "5860",
1310                              "event_type_version_id": "5"
1311                          },
1312                          "clickstream_trigger": {
1313                              "trigger_source_nm": "contact_form_with_zgmi",
1314                              "trigger_type_nm": "impression"
1315                          }
1316                      }
1317                  },
1318                  "isCheckedInitialState": true,
1319                  "leadFieldName": "wantsFinancing",
1320                  "label": "I want financing information",
1321                  "financingType": "ZGMI"
1322              },
1323              "checkboxes": [
1324                  {
1325                      "initialClickstreamMetadata": {
1326                          "onPageView": {
1327                              "semantic": {
1328                                  "semantic_event_nm": "view_content",
1329                                  "topic_tag_txt": []
1330                              },
1331                              "envelope": {
1332                                  "event_template_id": "374",
1333                                  "event_template_version_id": "1",
1334                                  "event_type_id": "5860",
1335                                  "event_type_version_id": "5"
1336                              },
1337                              "clickstream_trigger": {
1338                                  "trigger_source_nm": "contact_form_with_zgmi",
1339                                  "trigger_type_nm": "impression"
1340                              }
1341                          }
1342                      },
1343                      "isCheckedInitialState": true,
1344                      "leadFieldName": "wantsFinancing",
1345                      "label": "I want financing information",
1346                      "financingType": "ZGMI"
1347                  }
1348              ],
1349              "telephoneConsumerProtectionActDisclaimer": {
1350                  "text": "By pressing Contact agent, you agree that Zillow Group and its affiliates, and real estate professionals may call/text you about your inquiry, which may involve use of automated means and prerecorded/artificial voices. You don’t need to consent as a condition of buying any property, goods or services. Message/data rates may apply. You also agree to our Terms of Use. Zillow does not endorse any real estate professionals. We may share information about your recent and future site activity with your agent to help them understand what you’re looking for in a home.",
1351                  "textAttributes": [
1352                      {
1353                          "__typename": "TourViewModuleTextTooltipAttribute",
1354                          "tokenEndIndex": 104,
1355                          "tokenStartIndex": 79,
1356                          "tooltipText": "“Real estate professionals” includes the real estate agents and brokers, mortgage lenders and loan officers, property managers, and other professionals you interact with through Zillow. Zillow Premier Agent is an advertising program that helps connect customers to local real estate professionals. Zillow Premier Agent partners are paid advertisers and are not affiliated with Zillow, Inc. brokerage or any of its affiliates."
1357                      },
1358                      {
1359                          "__typename": "TourViewModuleTextLinkAttribute",
1360                          "tokenEndIndex": 367,
1361                          "tokenStartIndex": 355,
1362                          "url": "https://www.zillow.com/corp/Terms.htm"
1363                      }
1364                  ]
1365              },
1366              "tcpa": {
1367                  "telephoneConsumerProtectionActDisclaimer": {
1368                      "text": "By pressing Contact agent, you agree that Zillow Group and its affiliates, and real estate professionals may call/text you about your inquiry, which may involve use of automated means and prerecorded/artificial voices. You don’t need to consent as a condition of buying any property, goods or services. Message/data rates may apply. You also agree to our Terms of Use. Zillow does not endorse any real estate professionals. We may share information about your recent and future site activity with your agent to help them understand what you’re looking for in a home.",
1369                      "textAttributes": [
1370                          {
1371                              "__typename": "TourViewModuleTextTooltipAttribute",
1372                              "tokenEndIndex": 104,
1373                              "tokenStartIndex": 79,
1374                              "tooltipText": "“Real estate professionals” includes the real estate agents and brokers, mortgage lenders and loan officers, property managers, and other professionals you interact with through Zillow. Zillow Premier Agent is an advertising program that helps connect customers to local real estate professionals. Zillow Premier Agent partners are paid advertisers and are not affiliated with Zillow, Inc. brokerage or any of its affiliates."
1375                          },
1376                          {
1377                              "__typename": "TourViewModuleTextLinkAttribute",
1378                              "tokenEndIndex": 367,
1379                              "tokenStartIndex": 355,
1380                              "url": "https://www.zillow.com/corp/Terms.htm"
1381                          }
1382                      ]
1383                  },
1384                  "clickstreamMetadata": {
1385                      "onPageView": {
1386                          "semantic": {
1387                              "semantic_event_nm": "view_content",
1388                              "topic_tag_txt": ["contact_request"]
1389                          },
1390                          "envelope": {
1391                              "event_template_id": "68",
1392                              "event_template_version_id": "1",
1393                              "event_type_id": "6465",
1394                              "event_type_version_id": "2"
1395                          },
1396                          "clickstream_trigger": {
1397                              "trigger_source_nm": "scroll_contact_screen_disclaimer",
1398                              "trigger_type_nm": "impression"
1399                          }
1400                      }
1401                  }
1402              },
1403              "title": "Contact agent",
1404              "heading": null,
1405              "subheading": null,
1406              "buttonText": "Contact agent",
1407              "disclosure": null,
1408              "inputFields": [
1409                  {
1410                      "label": "Name",
1411                      "placeholder": null,
1412                      "validationRegex": null,
1413                      "isRequired": true,
1414                      "inputType": "NAME",
1415                      "clientSideValidationErrorMessage": "Enter your name",
1416                      "inputName": "name",
1417                      "isUserInputDisabled": false,
1418                      "value": null,
1419                      "defaultSubmitValue": null,
1420                      "maxCharacters": null
1421                  },
1422                  {
1423                      "label": "Phone",
1424                      "placeholder": null,
1425                      "validationRegex": "/^\\(?([2-9][0-8][0-9])\\)?[\\-. ]?([2-9][0-9]{2})[\\-. ]?([0-9]{4})(?: x(\\d{1,4}))?$/",
1426                      "isRequired": true,
1427                      "inputType": "PHONE_NUMBER",
1428                      "clientSideValidationErrorMessage": "Enter a valid US or Canadian phone number",
1429                      "inputName": "phoneNumber",
1430                      "isUserInputDisabled": false,
1431                      "value": null,
1432                      "defaultSubmitValue": null,
1433                      "maxCharacters": null
1434                  },
1435                  {
1436                      "label": "Email",
1437                      "placeholder": null,
1438                      "validationRegex": "/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-zA-Z]{2,63}$/i",
1439                      "isRequired": true,
1440                      "inputType": "EMAIL",
1441                      "clientSideValidationErrorMessage": "Enter a valid email address",
1442                      "inputName": "emailAddress",
1443                      "isUserInputDisabled": false,
1444                      "value": null,
1445                      "defaultSubmitValue": null,
1446                      "maxCharacters": 320
1447                  },
1448                  {
1449                      "label": "Message",
1450                      "placeholder": "Add details or questions about what you’re looking for",
1451                      "validationRegex": null,
1452                      "isRequired": false,
1453                      "inputType": "MESSAGE",
1454                      "clientSideValidationErrorMessage": null,
1455                      "inputName": "message",
1456                      "isUserInputDisabled": false,
1457                      "value": "I am interested in 7713 Bellehaven Ct, Austin, TX 78744.",
1458                      "defaultSubmitValue": null,
1459                      "maxCharacters": null
1460                  }
1461              ],
1462              "componentPositionOrder": [
1463                  "InputFields",
1464                  "CTA",
1465                  "Checkboxes",
1466                  "TCPADisclosure"
1467              ],
1468              "cta": {
1469                  "label": "Contact agent",
1470                  "action": null,
1471                  "clickstreamMetadata": {
1472                      "onClick": null,
1473                      "onError": {
1474                          "semantic": {
1475                              "semantic_event_nm": "contact_request_error",
1476                              "topic_tag_txt": ["contact_request"]
1477                          },
1478                          "envelope": {
1479                              "event_template_id": "68",
1480                              "event_template_version_id": "1",
1481                              "event_type_id": "6466",
1482                              "event_type_version_id": "2"
1483                          },
1484                          "clickstream_trigger": {
1485                              "trigger_source_nm": "button_to_complete_contact_form",
1486                              "trigger_type_nm": "interaction"
1487                          }
1488                      },
1489                      "onSuccess": null
1490                  },
1491                  "isSticky": false,
1492                  "helpText": "null"
1493              }
1494          },
1495          {
1496              "__typename": "ABAD"
1497          },
1498          {
1499              "__typename": "FormQuestionnaire"
1500          }
1501      ],
1502      "buildingId": null,
1503      "virtualTourUrl": null,
1504      "hasApprovedThirdPartyVirtualTourUrl": false,
1505      "photoCount": 23,
1506      "livingAreaUnits": "Square Feet",
1507      "lotSize": null,
1508      "lotAreaValue": null,
1509      "lotAreaUnits": "sqft",
1510      "postingProductType": "Standard",
1511      "marketingName": null,
1512      "priceHistory": [
1513          {
1514              "date": "2024-07-17",
1515              "price": 24000,
1516              "time": 1721174400000,
1517              "pricePerSquareFoot": null,
1518              "priceChangeRate": 0,
1519              "event": "Listed for sale",
1520              "source": "My State MLS",
1521              "buyerAgent": null,
1522              "sellerAgent": null,
1523              "showCountyLink": false,
1524              "postingIsRental": false,
1525              "attributeSource": {
1526                  "infoString1": "11323145",
1527                  "infoString2": "My State MLS",
1528                  "infoString3": null
1529              }
1530          }
1531      ],
1532      "ZoDsFsUpsellTop": {
1533          "display": true,
1534          "displayCategory": null,
1535          "displayAttributes": {
1536              "leadType": "NONE"
1537          },
1538          "treatment": null,
1539          "surfaceId": "fshdp",
1540          "placementId": "wow-top",
1541          "reason": null
1542      },
1543      "onsiteMessage": {
1544          "eventId": "58ca39e2-414a-485f-bd82-017c20b784f2",
1545          "decisionContext": {},
1546          "messages": [
1547              {
1548                  "skipDisplayReason": null,
1549                  "shouldDisplay": true,
1550                  "isGlobalHoldout": false,
1551                  "isPlacementHoldout": false,
1552                  "placementName": "HDPTopSlot",
1553                  "testPhase": "BASELINE",
1554                  "bucket": "BASELINE_TREATMENT",
1555                  "placementId": 399,
1556                  "passThrottle": true,
1557                  "lastModified": "1718824281000",
1558                  "eventId": "b5978726-7b4d-49fd-8cf7-01a6523a6434",
1559                  "decisionContext": {
1560                      "guid": "9b31f31c-0513-4cdb-8e4b-63f4051ad493",
1561                      "operatingSystem": "unknown",
1562                      "homeStatus": "fsba",
1563                      "isZillowOwned": false,
1564                      "homeType": "MANUFACTURED",
1565                      "listPrice": 24000,
1566                      "zipcode": "78744",
1567                      "isAdsRestricted": false,
1568                      "hideMortgageAdDetailPage": false,
1569                      "countyId": "1440",
1570                      "stateId": "54",
1571                      "streetAddress": "7713 Bellehaven Ct",
1572                      "city": "Austin",
1573                      "state": "TX",
1574                      "mlsid": "11323145",
1575                      "hasUserClaimedHome": false,
1576                      "shouldDisplayUpsell": true,
1577                      "zoMarketCode": "AUSTIN",
1578                      "placementId": "wow-top",
1579                      "surfaceId": "fshdp",
1580                      "leadType": "NONE",
1581                      "leadTypes": ["NONE"]
1582                  },
1583                  "selectedTreatment": {
1584                      "id": 2239,
1585                      "name": "ZGM_Purchase_FSHDP_Pre_Qual",
1586                      "component": "UpsellWrapper",
1587                      "status": "PORTFOLIO",
1588                      "renderingProps": "{\"actionLink\":\"https://www.zillow.com/pre-qualify/#/landing&zipCode=78744&propertyValue=24000&propertyType=MobileOrManufactured&source=Z_ForSaleHDP_Inline&hdpSource=FS_HDP\",\"actionText\":\"Start now\",\"actionType\":\"url_link\",\"background\":\"backgroundBlue\",\"bodyMarkdownText\":\"Talking to a lender early to get pre-qualified for a mortgage can give you an advantage in a competitive market. <p class=\\\"zg-mls-note\\\">Zillow Group Marketplace, Inc. NMLS #1303160 </p><style> div[class*=Upsell-] .zg-mls-note{ font-size: 10px; font-weight: 400; position: absolute; right: 4px; bottom: 0; margin-bottom: -4px; color: grey; } </style>\",\"headingMarkdownText\":\"Get pre-qualified for a loan\",\"icon\":\"houseWithDollarSign\",\"overrideMargin\":\"16px\",\"hasBorder\":false,\"gaImpressionCategory\":\"Homes\",\"gaImpressionAction\":\"ZGM Purchase Upsell\",\"gaImpressionLabel\":\"Display|fshdp|wow-top|zgm-purchase|get-pre-qualified|omp\",\"gaEngagementCategory\":\"Homes\",\"gaEngagementAction\":\"ZGM Purchase Upsell\",\"gaEngagementLabel\":\"Click|fshdp|wow-top|zgm-purchase|get-pre-qualified|omp\",\"gaHoverCategory\":\"Homes\",\"gaHoverAction\":\"ZGM Purchase Upsell\",\"gaHoverLabel\":\"Hover|fshdp|wow-top|zgm-purchase|get-pre-qualified|omp\"}",
1589                      "lastModified": "1668425760000"
1590                  },
1591                  "qualifiedTreatments": [
1592                      {
1593                          "id": 2239,
1594                          "name": "ZGM_Purchase_FSHDP_Pre_Qual",
1595                          "status": "PORTFOLIO",
1596                          "lastModified": "1668425760000"
1597                      }
1598                  ]
1599              }
1600          ]
1601      },
1602      "stateId": 54,
1603      "zipPlusFour": null,
1604      "numberOfUnitsTotal": 0,
1605      "foreclosureDefaultFilingDate": null,
1606      "foreclosureAuctionFilingDate": null,
1607      "foreclosureLoanDate": null,
1608      "foreclosureLoanOriginator": null,
1609      "foreclosureLoanAmount": null,
1610      "foreclosurePriorSaleDate": null,
1611      "foreclosurePriorSaleAmount": null,
1612      "foreclosureBalanceReportingDate": null,
1613      "foreclosureDefaultDescription": null,
1614      "foreclosurePastDueBalance": null,
1615      "foreclosureUnpaidBalance": null,
1616      "foreclosureAuctionTime": null,
1617      "foreclosureAuctionDescription": null,
1618      "foreclosureAuctionCity": null,
1619      "foreclosureAuctionLocation": null,
1620      "foreclosureDate": null,
1621      "foreclosureAmount": null,
1622      "foreclosingBank": null,
1623      "foreclosureJudicialType": "Non-Judicial",
1624      "datePostedString": "2024-07-17",
1625      "foreclosureTypes": {
1626          "isBankOwned": false,
1627          "isForeclosedNFS": false,
1628          "isPreforeclosure": false,
1629          "isAnyForeclosure": false,
1630          "wasNonRetailAuction": false,
1631          "wasForeclosed": false,
1632          "wasREO": null,
1633          "wasDefault": null
1634      },
1635      "foreclosureMoreInfo": null,
1636      "hasBadGeocode": false,
1637      "streetViewMetadataUrlMediaWallLatLong": "https://maps.googleapis.com/maps/api/streetview/metadata?location=30.173681,-97.76701&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&signature=tTv3ph01fkkR3-qn8f7j8mkVQ-g=",
1638      "streetViewMetadataUrlMediaWallAddress": "https://maps.googleapis.com/maps/api/streetview/metadata?location=7713%20Bellehaven%20Ct%2C%20Austin%2C%20TX%2078744&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&signature=KWWfS8_jgSoDXQalocebp_ahh5M=",
1639      "streetViewTileImageUrlMediumLatLong": "https://maps.googleapis.com/maps/api/streetview?location=30.173681,-97.76701&size=400x250&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&signature=oOAodNd9DfnfoHLwsqBvb6mjbPQ=",
1640      "streetViewTileImageUrlMediumAddress": "https://maps.googleapis.com/maps/api/streetview?location=7713%20Bellehaven%20Ct%2C%20Austin%2C%20TX%2078744&size=400x250&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&signature=Rwz17Nd2NfpouB0UpeNs8nhtIF4=",
1641      "streetViewServiceUrl": "https://street-view-url.prod.zgk-partner.zillowapi.com?zpid=400822147&address=7713%20Bellehaven%20Ct%2C%20Austin%2C%20TX%2078744&width=512&height=234&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&maxdistance=5280&lat=30.173681&lon=-97.76701&signature=lqIXxNpBByaOmZMxRoihz_oC384=",
1642      "staticMap": {
1643          "sources": [
1644              {
1645                  "width": 192,
1646                  "url": "https://maps.googleapis.com/maps/api/staticmap?center=30.173681,-97.76701&zoom=13&size=192x144&maptype=roadmap&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&signature=OP5Nm4gFWV4RqCcRrHk7DLxBNX4=",
1647                  "isHighResolutionStaticMap": null
1648              }
1649          ]
1650      },
1651      "postingUrl": null,
1652      "richMedia": null,
1653      "hasPublicVideo": false,
1654      "primaryPublicVideo": null,
1655      "richMediaVideos": null,
1656      "originalPhotos": [
1657          {
1658              "caption": "",
1659              "mixedSources": {
1660                  "jpeg": [
1661                      {
1662                          "url": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-d_d.jpg",
1663                          "width": 800
1664                      }
1665                  ]
1666              }
1667          }
1668      ],
1669      "listingSubType": {
1670          "isFSBA": true,
1671          "isFSBO": false,
1672          "isPending": false,
1673          "isNewHome": false,
1674          "isForeclosure": false,
1675          "isBankOwned": false,
1676          "isForAuction": false,
1677          "isOpenHouse": false,
1678          "isComingSoon": false
1679      },
1680      "tourViewCount": 0
1681  }
1682}

Detailed Output Structure Part 2

1{
2  "details": {
3      "postingContact": {
4          "name": "Dominic Mcclung",
5          "photo": null
6      },
7      "vrModel": {
8          "vrModelGuid": null,
9          "revisionId": null
10      },
11      "thirdPartyVirtualTour": {
12          "externalUrl": null,
13          "lightboxUrl": null,
14          "staticUrl": null,
15          "providerKey": null,
16          "approved": false
17      },
18      "listingAccount": null,
19      "mortgageRates": {
20          "thirtyYearFixedRate": null
21      },
22      "annualHomeownersInsurance": 86.39999999999999,
23      "listingFeedID": null,
24      "livingAreaUnitsShort": "sqft",
25      "priceChange": null,
26      "priceChangeDate": null,
27      "priceChangeDateString": null,
28      "formattedChip": {
29          "location": [
30              {
31                  "fullValue": "7713 Bellehaven Ct"
32              },
33              {
34                  "fullValue": "Austin, TX 78744"
35              }
36          ]
37      },
38      "hideZestimate": false,
39      "comingSoonOnMarketDate": null,
40      "isPreforeclosureAuction": false,
41      "lastSoldPrice": null,
42      "isHousingConnector": false,
43      "responsivePhotosOriginalRatio": [
44          {
45              "caption": "",
46              "mixedSources": {
47                  "jpeg": [
48                      {
49                          "url": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-d_d.jpg",
50                          "width": 800
51                      }
52                  ]
53              }
54          }
55      ],
56      "streetViewMetadataUrlMapLightboxAddress": "https://maps.googleapis.com/maps/api/streetview/metadata?location=7713%20Bellehaven%20Ct%2C%20Austin%2C%20TX%2078744&key=AIzaSyBV4lXhV-qzQOegyA3m0_AvGy9F21HIyOQ&source=outdoor&signature=ET4-hKMqO8PzyNUdFdoyH54MojA=",
57      "thumb": [
58          {
59              "url": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_a.jpg"
60          }
61      ],
62      "neighborhoodMapThumb": [
63          {
64              "url": "https://photos.zillowstatic.com/fp/46c826622c1b90f40c27378c85f0f05c-p_c.jpg"
65          }
66      ],
67      "isRecentStatusChange": false,
68      "isNonOwnerOccupied": false,
69      "isFeatured": false,
70      "rentalApplicationsAcceptedType": "REQUEST_TO_APPLY",
71      "listingTypeDimension": "For Sale by Agent",
72      "featuredListingTypeDimension": "organic",
73      "brokerIdDimension": "For Sale by Agent",
74      "keystoneHomeStatus": "ForSale",
75      "pageUrlFragment": "ForSale",
76      "isRentalsLeadCapMet": false,
77      "isPaidMultiFamilyBrokerId": false,
78      "selfTour": {
79          "hasSelfTour": false
80      },
81      "countyId": 1440,
82      "countyFIPS": null,
83      "parcelId": null,
84      "taxHistory": []
85  }
86}

Detailed Output Structure Part 3

1"saleDetails": {
2    "__typename": "Property",
3    "zpid": 83002983,
4    "openHouseSchedule": [],
5    "timeOnZillow": "21 days",
6    "daysOnZillow": 21,
7    "favoriteCount": 17,
8    "pageViewCount": 579,
9    "newConstructionType": null,
10    "listedBy": [
11        {
12            "__typename": "ListedBySection",
13            "elements": [
14                {
15                    "__typename": "ListedByElement",
16                    "action": {
17                        "__typename": "ListedByAction",
18                        "url": "/contact/NativeAppContactForm.htm?zpid=83002983&preferredVariant=owner_contact",
19                        "variant": "OWNER_CONTACT"
20                    },
21                    "id": "NAME",
22                    "text": "Property Owner"
23                },
24                {
25                    "__typename": "ListedByElement",
26                    "action": null,
27                    "id": "PHONE",
28                    "text": "(813) 743-8557"
29                }
30            ],
31            "textStyle": null
32        }
33    ],
34    "attributionInfo": {
35        "__typename": "AttributionInfo",
36        "attributionTitle": null,
37        "mlsId": "",
38        "mlsName": null,
39        "mlsDisclaimer": null,
40        "providerLogo": null,
41        "lastChecked": null,
42        "lastUpdated": null
43    },
44    "pals": [],
45    "listingMetadata": {
46        "__typename": "listingMetadata",
47        "mustDisplayDisclaimerBelowAttribution": false
48    },
49    "resoFacts": {
50        "__typename": "RESOFacts",
51        "listAOR": null,
52        "offerReviewDate": null
53    },
54    "listing_sub_type": {
55        "__typename": "ListingSubtype",
56        "is_FSBO": true
57    },
58    "affordabilityEstimate": {
59        "__typename": "AffordabilityEstimate",
60        "showMonthlyCostCalculator": true,
61        "monthly": {
62            "__typename": "AffordabilityEstimateBreakdown",
63            "principalAndInterest": 4172,
64            "privateMortgageInterest": 0,
65            "hoaFees": 200,
66            "homeownersInsurance": 282,
67            "propertyTax": 565
68        },
69        "usedInputs": {
70            "__typename": "AffordabilityEstimateInputs",
71            "downPaymentPercent": 20,
72            "loan": {
73                "__typename": "LoanDetails",
74                "rate": 6.25
75            }
76        },
77        "mortgageChipData": {
78            "__typename": "MortgageChip",
79            "tooltipCopyText": null
80        },
81        "personalizedPaymentData": {
82            "__typename": "MortgagePersonalizedPaymentData",
83            "hub": {
84                "__typename": "MortgageHub",
85                "hubHero": {
86                    "__typename": "MortgageHero",
87                    "bodyText": "All calculations are estimates and provided by Zillow, Inc. for informational purposes only. Actual amounts may vary.",
88                    "cta": {
89                        "__typename": "MortgageCTA",
90                        "ctaCopyText": "Customize this payment",
91                        "routingURL": ""
92                    },
93                    "estMonthlyPayment": "$5,219/mo",
94                    "monthlyHOAFees": {
95                        "__typename": "MortgageLineItem",
96                        "copy": "HOA fees",
97                        "percentageOfTotal": 4,
98                        "showTooltip": false,
99                        "tooltip": null,
100                        "value": "$200"
101                    },
102                    "monthlyPrincipalAndInterest": {
103                        "__typename": "MortgageLineItem",
104                        "copy": "Principal & interest",
105                        "percentageOfTotal": 80,
106                        "showTooltip": false,
107                        "value": "$4,172",
108                        "tooltip": null
109                    },
110                    "monthlyTaxesAndInsurance": {
111                        "__typename": "MortgageLineItem",
112                        "copy": "All taxes & insurance",
113                        "percentageOfTotal": 16,
114                        "showTooltip": false,
115                        "value": "$847",
116                        "tooltip": null
117                    },
118                    "showTitleTooltip": true,
119                    "title": "Estimated payment",
120                    "titleTooltip": {
121                        "__typename": "MortgageTooltipInline",
122                        "bodyCopy": "Zillow calculates a home’s estimated monthly mortgage payment by making standard assumptions about borrower information, which are also used to derive timely, market-driven interest rates.\nZillow Home Loans mortgage interest rates are dependent on a number of factors, including credit score, down payment, and loan term. Interest rates updated daily as of 2AM UTC and includes up to two (2) buydown points of the loan amount on a conforming fixed-rate loan. The actual payment obligation may be greater.",
123                        "mortgageLink": [],
124                        "title": "Estimated payment"
125                    }
126                }
127            }
128        }
129    },
130    "neighborhoodRegion": {
131        "__typename": "Region",
132        "regionId": 275645
133    },
134    "zipcodeRegion": {
135        "__typename": "Region",
136        "regionId": 72712
137    },
138    "cityRegion": {
139        "__typename": "Region",
140        "regionId": 41176
141    },
142    "countyId": 3165,
143    "longitude": -82.50737,
144    "latitude": 27.939623,
145    "commute": null
146},
147"mediaAndDescription": {
148    "__typename": "Property",
149    "zpid": 83002983,
150    "latitude": 27.939623,
151    "longitude": -82.50737,
152    "photoUrls": [
153        {
154            "__typename": "Photo",
155            "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=316x234&zoom=17&center=27.93962287902832,-82.50736999511719&key=AIzaSyBWYJWCA8FNMQvSe_k3LKfDGJaEgdKwsco&&signature=ESWi3z_iioQtBCOVYzSoEz3THqA=",
156            "subjectType": null
157        }
158        ...
159    ],
160    "photoUrlsHighRes": [
161        {
162            "__typename": "Photo",
163            "photoKey": null,
164            "url": "https://maps.googleapis.com/maps/api/staticmap?mobile=false&sensor=true&maptype=satellite&size=1025x768&zoom=17&center=27.93962287902832,-82.50736999511719&key=AIzaSyBWYJWCA8FNMQvSe_k3LKfDGJaEgdKwsco&&signature=nLbHkwJAKZihS-XmehN10jP-u-k=",
165            "subjectType": null
166        }
167        ...
168    ],
169    "streetViewImageUrl": null,
170    "richMedia": null,
171    "hasApprovedThirdPartyVirtualTourUrl": false,
172    "thirdPartyVirtualTour": {
173        "__typename": "thirdPartyVirtualTour",
174        "staticUrl": null,
175        "externalUrl": null,
176        "lightboxUrl": null
177    },
178    "timeZone": "America/New_York",
179    "unassistedShowing": null,
180    "attributionInfo": {
181        "__typename": "AttributionInfo",
182        "trueStatus": null
183    },
184    "listingMetadata": {
185        "__typename": "listingMetadata",
186        "mustHighlightMlsStatus": false
187    },
188    "formattedChip": {
189        "__typename": "FormattedChip",
190        "status": {
191            "__typename": "ResponsiveString",
192            "fullValue": "For sale by owner",
193            "abbreviatedValue": "For sale by owner"
194        },
195        "mainPrice": {
196            "__typename": "ChipElementType",
197            "elementType": "mainPrice",
198            "prefixLabel": {
199                "__typename": "ResponsiveString",
200                "fullValue": "",
201                "abbreviatedValue": null
202            },
203            "value": {
204                "__typename": "ResponsiveString",
205                "fullValue": "$847,000",
206                "abbreviatedValue": "$847K"
207            },
208            "suffixLabel": {
209                "__typename": "ResponsiveString",
210                "fullValue": "",
211                "abbreviatedValue": null
212            },
213            "contentDescription": "This home's price is $847,000",
214            "jsMessage": null
215        },
216        "priceChange": null,
217        "quickFacts": [
218            {
219                "__typename": "ChipElementType",
220                "elementType": "beds",
221                "prefixLabel": null,
222                "value": {
223                    "__typename": "ResponsiveString",
224                    "fullValue": "3",
225                    "abbreviatedValue": null
226                },
227                "suffixLabel": {
228                    "__typename": "ResponsiveString",
229                    "fullValue": " beds",
230                    "abbreviatedValue": " bds"
231                },
232                "contentDescription": "3 beds",
233                "jsMessage": null
234            },
235            {
236                "__typename": "ChipElementType",
237                "elementType": "baths",
238                "prefixLabel": null,
239                "value": {
240                    "__typename": "ResponsiveString",
241                    "fullValue": "3",
242                    "abbreviatedValue": null
243                },
244                "suffixLabel": {
245                    "__typename": "ResponsiveString",
246                    "fullValue": " baths",
247                    "abbreviatedValue": " ba"
248                },
249                "contentDescription": "3 baths",
250                "jsMessage": null
251            },
252            {
253                "__typename": "ChipElementType",
254                "elementType": "livingArea",
255                "prefixLabel": null,
256                "value": {
257                    "__typename": "ResponsiveString",
258                    "fullValue": "2,438",
259                    "abbreviatedValue": null
260                },
261                "suffixLabel": {
262                    "__typename": "ResponsiveString",
263                    "fullValue": " sqft",
264                    "abbreviatedValue": " sqft"
265                },
266                "contentDescription": "2,438 Square Feet",
267                "jsMessage": null
268            }
269        ],
270        "additionalFacts": [
271            {
272                "__typename": "ChipElementType",
273                "elementType": "zestimate",
274                "prefixLabel": {
275                    "__typename": "ResponsiveString",
276                    "fullValue": "Zestimate®: ",
277                    "abbreviatedValue": null
278                },
279                "value": {
280                    "__typename": "ResponsiveString",
281                    "fullValue": "$844,200",
282                    "abbreviatedValue": null
283                },
284                "suffixLabel": null,
285                "contentDescription": "This Property's Zestimate® is $844,200",
286                "jsMessage": null
287            }
288        ]
289    },
290    "address": {
291        "__typename": "Address",
292        "streetAddress": "3817 W Dale Ave APT 3",
293        "city": "Tampa",
294        "state": "FL",
295        "zipcode": "33609"
296    },
297    "country": "USA",
298    "isUndisclosedAddress": false,
299    "resoFacts": {
300        "__typename": "RESOFacts",
301        "bathroomsFloat": 3,
302        "bathroomsFull": 2,
303        "bathroomsThreeQuarter": 0,
304        "bathroomsHalf": 1,
305        "bathroomsOneQuarter": 0,
306        "bathroomsPartial": null,
307        "homeType": "Townhouse",
308        "propertySubType": null,
309        "lotSize": "1,742 sqft",
310        "yearBuilt": 2008,
311        "yearBuiltEffective": null,
312        "parkingFeatures": [
313            "Garage - Attached"
314        ],
315        "parkingCapacity": 2,
316        "carportParkingCapacity": null,
317        "garageParkingCapacity": null,
318        "coveredParkingCapacity": null,
319        "openParkingCapacity": null,
320        "hasAttachedGarage": null,
321        "hasCarport": null,
322        "hasGarage": false,
323        "hasOpenParking": null,
324        "cooling": [
325            "Central"
326        ],
327        "heating": [
328            "Forced air",
329            "Gas"
330        ],
331        "hoaFee": "$200 monthly",
332        "pricePerSquareFoot": 347,
333        "hasPrivatePool": null,
334        "fireplaces": null,
335        "elementarySchoolDistrict": null,
336        "middleOrJuniorSchoolDistrict": null,
337        "highSchoolDistrict": null,
338        "otherFacts": [
339            {
340                "__typename": "RESOOtherFact",
341                "name": "Appliances",
342                "value": "Dishwasher, Convection Oven"
343            },
344            {
345                "__typename": "RESOOtherFact",
346                "name": "Association Fee Includes",
347                "value": "Maintenance Grounds"
348            }
349            ...
350        ],
351        "atAGlanceFacts": [
352            {
353                "__typename": "FactType",
354                "factLabel": "Type",
355                "factValue": "Townhouse"
356            },
357            {
358                "__typename": "FactType",
359                "factLabel": "Year Built",
360                "factValue": "2008"
361            }
362            ...
363        ]
364    },
365    "isHousingConnector": false,
366    "rentalApplicationsAcceptedType": "REQUEST_TO_APPLY",
367    "providerListingID": null,
368    "contactAgentUrl": {
369        "__typename": "UrlObjectType",
370        "path": "/mobile/contact-agent/"
371    },
372    "scheduleTourUrl": {
373        "__typename": "UrlObjectType",
374        "path": "/mobile/schedule-tour/"
375    },
376    "zestimate": 844200,
377    "rentZestimate": 4631,
378    "lotAreaValue": 1742,
379    "lotAreaUnits": "Square Feet",
380    "monthlyHoaFee": 200,
381    "isPremierBuilder": false,
382    "walkScore": {
383        "__typename": "WalkScoreResponse",
384        "walkscore": 87
385    },
386    "bikeScore": {
387        "__typename": "BikeScoreResponse",
388        "bikescore": 52
389    },
390    "transitScore": {
391        "__typename": "TransitScoreResponse",
392        "transit_score": 31
393    },
394    "description": "Completely Renovated Luxurious Townhome in the Heart of South Tampa. It appears that Zillow has not allowed for the increased square footage in their estimate.  This is one of the largest units in this complex that has been upgraded with beautiful wood flooring throughout. You will enjoy your gourmet kitchen featuring KitchenAide appliances, a gas stove, granite counter tops, stainless appliances, high-end cabinetry and a walk-in pantry. A Master ensuite, two additional bedrooms, Jack and Jill second bath, a large office and laundry room are located on the second floor and can be accessed by your Private Elevator.  You will enjoy a community that provides everything for an easy care free lifestyle:   Stroll among the beautifully tree lined streets and walk to many restaurants, fitness centers, stores including Trader Joes.  This unit is a must see.",
395    "homeInsights": [
396        {
397            "__typename": "homeInsights",
398            "insights": [
399                {
400                    "__typename": "insights",
401                    "phrases": [
402                        "Large office",
403                        "Granite counter tops",
404                        "Gas stove",
405                        "Tree lined streets",
406                        "Laundry room",
407                        "Gourmet kitchen",
408                        "High-end cabinetry"
409                    ],
410                    "modelId": "z-nrt-pdc-llm-tags",
411                    "treatmentId": "model_0"
412                },
413                {
414                    "__typename": "insights",
415                    "phrases": [
416                        "Large office",
417                        "Granite counter tops",
418                        "Gas stove",
419                        "Tree lined streets",
420                        "Laundry room",
421                        "Gourmet kitchen",
422                        "High-end cabinetry"
423                    ],
424                    "modelId": "z-nrt-pdc-llm-tags",
425                    "treatmentId": "model_1"
426                }
427            ]
428        }
429    ]
430}

Detailed Field Explanations

  1. listingDataSource: "Phoenix" - Indicates the source system of the listing data.
  2. zpid: 400822147 - Zillow's unique property identifier.
  3. city: "Austin" - The city where the property is located.
  4. state: "TX" - The state where the property is located (using two-letter abbreviation).
  5. homeStatus: "FOR_SALE" - Current status of the property in the market.
  6. address: Object containing detailed address information:
    • streetAddress: "7713 Bellehaven Ct" - The street number and name.
    • city: "Austin" - City name.
    • state: "TX" - State abbreviation.
    • zipcode: "78744" - 5-digit ZIP code.
    • neighborhood: null - Name of the neighborhood (if available).
    • community: null - Name of the community (if applicable).
    • subdivision: null - Name of the subdivision (if applicable).
  7. isListingClaimedByCurrentSignedInUser: false - Indicates if the current user has claimed this listing.
  8. isCurrentSignedInAgentResponsible: false - Indicates if the current signed-in agent is responsible for this listing.
  9. bedrooms: 3 - Number of bedrooms in the property.
  10. bathrooms: 2 - Number of bathrooms in the property.
  11. price: 24000 - The listing price of the property in USD.
  12. yearBuilt: 1999 - The year the property was constructed.
  13. streetAddress: "7713 Bellehaven Ct" - Repeats the street address.
  14. zipcode: "78744" - Repeats the ZIP code.
  15. isCurrentSignedInUserVerifiedOwner: false - Indicates if the current user is verified as the property owner.
  16. propertyUpdatePageLink: null - Link to update property information (if available).
  17. moveHomeMapLocationLink: null - Link to adjust the property's map location (if available).
  18. propertyEventLogLink: null - Link to view the property's event log (if available).
  19. editPropertyHistorylink: null - Link to edit the property's history (if available).
  20. collections: Object containing information about similar properties and tracking tags.
  21. listing_sub_type: Object detailing specific characteristics of the listing:
  • is_forAuction: false - Indicates if the property is up for auction.
  • is_newHome: false - Indicates if it's a new construction.
  • is_FSBO: false - Indicates if it's For Sale By Owner.
  • is_FSBA: true - Indicates if it's For Sale By Agent.
  • is_foreclosure: false - Indicates if it's a foreclosure.
  • is_bankOwned: false - Indicates if it's bank-owned (REO).
  • is_comingSoon: false - Indicates if it's a coming soon listing.
  • is_pending: false - Indicates if the sale is pending.
  • is_openHouse: false - Indicates if there's an open house scheduled.
  1. providerListingID: null - External listing ID from the data provider (if available).
  2. isRentalListingOffMarket: false - Indicates if a rental listing is no longer on the market.
  3. hdpUrl: "/homedetails/7713-Bellehaven-Ct-Austin-TX-78744/400822147_zpid/" - URL path for the Home Details Page on Zillow.
  4. nearbyCities: Array of objects containing information about nearby cities.
  5. nearbyNeighborhoods: Array of objects containing information about nearby neighborhoods.
  6. country: "USA" - The country where the property is located.
  7. nearbyZipcodes: Array of objects containing information about nearby ZIP codes.
  8. cityId: 10221 - Zillow's unique identifier for the city.
  9. citySearchUrl: Object containing URL information for searching homes in the city.
  10. zipcodeSearchUrl: Object containing URL information for searching homes in the ZIP code.
  11. apartmentsForRentInZipcodeSearchUrl: Object containing URL for searching apartments for rent in the ZIP code.
  12. housesForRentInZipcodeSearchUrl: Object containing URL for searching houses for rent in the ZIP code.
  13. abbreviatedAddress: "7713 Bellehaven Ct" - Short form of the property address.
  14. county: "Travis County" - The county where the property is located.
  15. neighborhoodRegion: null - The broader neighborhood region (if available).
  16. building: null - Building name or number (if applicable, usually for apartments or condos).
  17. isUndisclosedAddress: false - Indicates if the full address is hidden for privacy reasons.
  18. boroughId: null - Identifier for the borough (if applicable, e.g., in New York City).
  19. neighborhoodSearchUrl: null - URL for searching properties in the neighborhood.
  20. stateSearchUrl: Object containing URL for searching properties in the state.
  21. countySearchUrl: Object containing URL for searching properties in the county.
  22. boroughSearchUrl: null - URL for searching properties in the borough (if applicable).
  23. communityUrl: null - URL for the community page (if applicable).
  24. isShowcaseListing: false - Indicates if this is a premium or featured listing.
  25. isPremierBuilder: false - Indicates if the property is from a premier builder.
  26. homeType: "MANUFACTURED" - The type of home (e.g., single-family, condo, manufactured).
  27. adTargets: Object containing various parameters used for ad targeting.
  28. attributionInfo: Object containing detailed information about the listing agent, brokerage, and MLS.
  29. currency: "USD" - The currency of the listing price.
  30. interactiveFloorPlanUrl: "" - URL for an interactive floor plan, if available.
  31. lotPremium: null - Additional cost for the lot, if applicable.
  32. listPriceLow: null - Lower bound of the listing price range, if applicable.
  33. resoFacts: Object containing extensive property details, including:
    • aboveGradeFinishedArea: "0" - Finished area above ground level.
    • basementYN: false - Indicates if the property has a basement.
    • bathrooms, bathroomsFull, etc.: Details about the number and types of bathrooms.
    • bedrooms: Number of bedrooms.
    • buildingArea: "0" - Total building area.
    • cooling, heating: Information about cooling and heating systems.
    • fireplaces: Number of fireplaces.
    • flooring: Type of flooring.
    • lotFeatures: Array of lot features.
    • parkingFeatures: Array of parking features.
    • rooms: Array of room details.
    • yearBuilt: Year the property was built. (Note: This object contains many more fields detailing various aspects of the property)
  34. monthlyHoaFee: null - Monthly Homeowners Association fee, if applicable.
  35. livingArea: 0 - Total living area in square feet.
  36. livingAreaValue: 0 - Numeric value of the living area.
  37. zestimate: null - Zillow's estimated market value for the prope