$1.6 / 1k results
Extract Zillow property address, price, beds, baths, and square footage from a list of Zillow URLs
Endpoint
POST /api/v1/agents/zillow/listing/run
Parameters
array
required
List · One per line. You can input Zillow listing URLs (zillow.com/homedetails/…) or property addresses (e.g. ‘123 Main St, San Francisco, CA’).
string
default:"RECENTLY_SOLD"
Dropdown · Which listing status to look up (Zillow uses different APIs per status).Options:
FOR_SALE, RECENTLY_SOLD, FOR_RENTLegend: FOR_SALE = For Sale, RECENTLY_SOLD = Recently Sold, FOR_RENT = For Rentstring
default:"disabled"
Dropdown · For multi-unit building URLs (e.g. apartment complexes), pull individual units of this status.Options:
disabled, all, for_sale, recently_sold, for_rent, off_marketLegend: disabled = Disabled (skip building units), all = All units, for_sale = Only units For Sale, recently_sold = Only units Recently Sold, for_rent = Only units For Rent, off_market = Only units Off MarketResponse columns
| Field | Display name | Type |
|---|---|---|
sourceUrl | Source URL | url |
address | Address | text |
street | Street | text |
city | City | text |
state | State | text |
zip | Zip | text |
country | Country | text |
county | County | text |
latitude | Latitude | number |
longitude | Longitude | number |
currency | Currency | text |
price | Price | currency |
zestimate | Zestimate | currency |
rentZestimate | Rent Zestimate | currency |
lastSoldPrice | Last Sold Price | currency |
lastSoldDate | Last Sold Date | text |
status | Status | text |
type | Type | text |
propertyType | Property Type | text |
bedrooms | Bedrooms | number |
bathrooms | Bathrooms | number |
livingAreaSqft | Living Area (sqft) | number |
lotSize | Lot Size | number |
yearBuilt | Year Built | number |
daysOnZillow | Days On Zillow | number |
description | Description | text |
thumbnail | Thumbnail | url |
photo | Photo | url |
photoCount | Photo Count | number |
topSchool | Top School | text |
schoolRating | School Rating | rating |
schoolDistance | School Distance | number |
propertyTaxRate | Property Tax Rate | percentage |
monthlyHoaFee | Monthly HOA Fee | currency |
tourViews | Tour Views | number |
nonOwnerOccupied | Non-Owner Occupied | boolean |
featured | Featured | boolean |
showcase | Showcase | boolean |
hideZestimate | Hide Zestimate | boolean |
neighborhood | Neighborhood | text |
parentRegion | Parent Region | text |
zpid | ZPID | number |
adTargets | Ad Targets | text |
addressSubdivision | Address Subdivision | text |
addressZipcode | Address Zipcode | text |
foreclosureTypesIsBankOwned | Foreclosure Types Is Bank Owned | boolean |
foreclosureTypesWasNonRetailAuction | Foreclosure Types Was Non Retail Auction | boolean |
formattedChipLocationFullValue | Formatted Chip Location Full Value | text |
listedByElementsText | Listed By Elements Text | text |
listedById | Listed By ID | text |
listingSubType | Listing Sub Type | text |
mortgageRates | Mortgage Rates | text |
mortgageZhlRates | Mortgage ZHL Rates | text |
neighborhoodMapThumbUrl | Neighborhood Map Thumb URL | url |
originalPhotosMixedSourcesJpeg | Original Photos Mixed Sources Jpeg | text |
originalPhotosMixedSourcesWebp | Original Photos Mixed Sources Webp | text |
ownerAccountZuid | Owner Account Zuid | integer |
postingContactName | Posting Contact Name | text |
priceHistory | Price History | text |
resoFacts | Reso Facts | text |
responsivePhotosMixedSourcesJpeg | Responsive Photos Mixed Sources Jpeg | text |
responsivePhotosMixedSourcesWebp | Responsive Photos Mixed Sources Webp | text |
responsivePhotosOriginalRatioMixedSourcesJpeg | Responsive Photos Original Ratio Mixed Sources Jpeg | text |
responsivePhotosOriginalRatioMixedSourcesWebp | Responsive Photos Original Ratio Mixed Sources Webp | text |
schoolsGrades | Schools Grades | text |
schoolsLevel | Schools Level | text |
schoolsLink | Schools Link | url |
schoolsType | Schools Type | text |
selfTourHasSelfTour | Self Tour Has Self Tour | boolean |
staticMapSourcesUrl | Static Map Sources URL | url |
taxHistory | Tax History | text |
thirdPartyVirtualTourApproved | Third Party Virtual Tour Approved | boolean |
tourEligibilityIsPropertyTourEligible | Tour Eligibility Is Property Tour Eligible | boolean |
Example
curl -X POST https://api.mindcase.co/api/v1/agents/zillow/listing/run \
-H "Authorization: Bearer mk_live_abc123def456" \
-H "Content-Type: application/json" \
-d '{
"params": {
"urls": [
{
"url": "https://www.zillow.com/homedetails/133-2nd-Ave-APT-11-New-York-NY-10003/97501256_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/29-E-9th-St-APT-1-New-York-NY-10003/2062259400_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/30-E-9th-St-6BBCC-New-York-NY-10003/124423734_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/704-Broadway-PENTHOUSE-New-York-NY-10003/442755067_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/85-1st-Ave-APT-7B-New-York-NY-10003/2136604472_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/718-Broadway-APT-10A-New-York-NY-10003/244756442_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/224-E-14th-St-APT-1-New-York-NY-10003/89329362_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/22-Irving-Pl-APT-1A-New-York-NY-10003/114442463_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/21-E-10th-St-APT-5A-New-York-NY-10003/72513276_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/11-Gramercy-Park-South-New-York-NY-10003/447030087_zpid/"
}
]
}
}'
import requests
resp = requests.post(
"https://api.mindcase.co/api/v1/agents/zillow/listing/run",
headers={"Authorization": "Bearer mk_live_abc123def456"},
json={"params": {
"urls": [
{
"url": "https://www.zillow.com/homedetails/133-2nd-Ave-APT-11-New-York-NY-10003/97501256_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/29-E-9th-St-APT-1-New-York-NY-10003/2062259400_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/30-E-9th-St-6BBCC-New-York-NY-10003/124423734_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/704-Broadway-PENTHOUSE-New-York-NY-10003/442755067_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/85-1st-Ave-APT-7B-New-York-NY-10003/2136604472_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/718-Broadway-APT-10A-New-York-NY-10003/244756442_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/224-E-14th-St-APT-1-New-York-NY-10003/89329362_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/22-Irving-Pl-APT-1A-New-York-NY-10003/114442463_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/21-E-10th-St-APT-5A-New-York-NY-10003/72513276_zpid/"
},
{
"url": "https://www.zillow.com/homedetails/11-Gramercy-Park-South-New-York-NY-10003/447030087_zpid/"
}
]
}},
)
data = resp.json()
Example response
Response
{
"job_id": "job_7f3a2b1c",
"status": "completed",
"data": [
{
"sourceUrl": "https://www.zillow.com/homedetails/133-2nd-Ave-APT-11-New-York-NY-10003/97501256_zpid/",
"address": "133 2nd Ave APT 11",
"street": "133 2nd Ave APT 11",
"city": "New York",
"state": "NY",
"zip": "10003",
"country": "USA",
"county": "New York County",
"latitude": 40.728867,
"longitude": -73.98792,
"currency": "USD",
"price": 1975000,
"zestimate": 1952900,
"rentZestimate": 6472,
"lastSoldPrice": 1950000,
"lastSoldDate": null,
"status": "FOR_SALE",
"type": "CONDO",
"propertyType": "Condo",
"bedrooms": 2,
"bathrooms": 1,
"livingAreaSqft": 1050,
"lotSize": null,
"yearBuilt": 1920,
"daysOnZillow": 5,
"description": "Loft in the Sky with Downtown Views\n133 Second Avenue, Apt 11\n\nStunning top floor, this sun-drenched loft-like two-bedroom, one-bath residence offers sweeping open skyline views and an exceptional Downtown address at the crossroads of the East Village, Greenwich Village, and NoHo.\n\nFlooded with natural light from triple exposures (north, east, and west), the dramatic great room is framed by walls of glass overlooking historic rooftops and iconic city vistas. Soaring ceilings and rich hardwood floors enhance the airy, expansive feel, creating a true \u201cloft in the sky.\u201d\n\nThe open chef\u2019s kitchen is both stylish and functional, featuring granite countertops, glass subway tile backsplash, and stainless steel appliances, along with the convenience of an in-unit washer and dryer.\n\nPrivately tucked away along a separate hallway, the two bedrooms offer bright exposures and generous closet space, including a walk-in. The windowed bathroom is beautifully appointed with floor-to-ceiling stone tile and a deep soaking tub/shower.\n\nA rare offering, this top-floor home combines light, scale, and tranquility in one of Downtown\u2019s most vibrant neighborhoods.\n\nHighlights Include:\n\nTop-floor 2BR with loft-like proportions\nWalls of glass with open skyline views\nTriple exposures (North/East/West)\nCentral air conditioning\nSoaring ceilings and hardwood floors\nOpen kitchen with stainless steel appliances\nIn-unit washer/dryer\nWindowed bathroom with stone finishes\nExcellent storage, including walk-in closet\n\nBuilding Features:\n\nPet-friendly elevator condominium (circa 1920)\nLandscaped roof deck with panoramic views\nPrime location at Second Avenue & St. Mark\u2019s Place\n\nSurrounded by some of Downtown\u2019s best dining, nightlife, and cultural destinations, and moments from the 6, N/R/W, and L trains, this home offers the perfect blend of energy and ease.\n\nAs Featured in New York Post: Gimme Shelter",
"thumbnail": null,
"photo": null,
"photoCount": 11,
"topSchool": null,
"schoolRating": null,
"schoolDistance": null,
"propertyTaxRate": 0.9,
"monthlyHoaFee": 1066,
"tourViews": 0,
"nonOwnerOccupied": false,
"featured": false,
"showcase": false,
"hideZestimate": false,
"neighborhood": "East Village",
"parentRegion": "East Village",
"zpid": 97501256,
"adTargets": {
"listtp": "buy_agent",
"oh": "yes",
"proptp": "cnd",
"dma": "43",
"cnty": "New_York",
"hood": "East_Village",
"price_band": "z1m",
"zestimate": "1952900",
"zestibuck": "1_5-1_999m",
"price": "1975000",
"prange": "1_5-1_999m",
"bd": "2",
"ba": "1",
"sqft": "1050",
"sqftrange": "1000-1499",
"yrblt": "1920-1939",
"aamgnrc1": "133 2nd Ave Apt 11",
"aamgnrc2": "Apt 11",
"city": "New_York",
"state": "NY",
"zip": "10003",
"pid": "97501256",
"premieragent": "no",
"tflag": "verizon",
"ssid": "6955",
"service_version": "9d5f2ce5",
"env": "prod",
"guid": "5359cdbc-6389-4209-a0a4-0ce3c5acefcc"
},
"addressSubdivision": "East Village",
"addressZipcode": "10003",
"foreclosureTypesIsBankOwned": false,
"foreclosureTypesWasNonRetailAuction": false,
"formattedChipLocationFullValue": null,
"listedByElementsText": null,
"listedById": null,
"listingSubType": {
"isFSBA": true,
"isFSBO": false,
"isPending": false,
"isNewHome": false,
"isForeclosure": false,
"isBankOwned": false,
"isForAuction": false,
"isOpenHouse": true,
"isComingSoon": false
},
"mortgageRates": {
"thirtyYearFixedRate": 6.388
},
"mortgageZhlRates": {
"fifteenYearFixedBucket": {
"rate": 6.075,
"rateSource": "ZGMI",
"lastUpdated": 1777827695300
},
"thirtyYearFixedBucket": {
"rate": 6.388,
"rateSource": "ZGMI",
"lastUpdated": 1777827695300
},
"arm5Bucket": {
"rate": 6.125,
"rateSource": "ZGMI",
"lastUpdated": 1777827695300
}
},
"neighborhoodMapThumbUrl": null,
"originalPhotosMixedSourcesJpeg": null,
"originalPhotosMixedSourcesWebp": null,
"ownerAccountZuid": null,
"postingContactName": "Gino Filippone",
"priceHistory": [
{
"date": "2026-04-28",
"time": 1777334400000,
"price": 1975000,
"pricePerSquareFoot": 1881,
"priceChangeRate": 0.01282051282051282,
"event": "Listed for sale",
"source": "StreetEasy",
"buyerAgent": null,
"sellerAgent": null,
"showCountyLink": false,
"postingIsRental": false,
"attributeSource": {
"infoString1": "S1824702",
"infoString2": "StreetEasy",
"infoString3": null
}
},
{
"date": "2022-06-27",
"time": 1656288000000,
"price": 1950000,
"pricePerSquareFoot": 1857,
"priceChangeRate": 0.16071428571428573,
"event": "Sold",
"source": "Public Record",
"buyerAgent": null,
"sellerAgent": {
"photo": null,
"profileUrl": "/profile/dannydavis702/",
"name": "Danny Davis"
},
"showCountyLink": false,
"postingIsRental": false,
"attributeSource": {
"infoString1": null,
"infoString2": "Public Record",
"infoString3": null
}
},
{
"date": "2022-05-07",
"time": 1651881600000,
"price": 1680000,
"pricePerSquareFoot": 1600,
"priceChangeRate": 0,
"event": "Pending sale",
"source": "StreetEasy",
"buyerAgent": null,
"sellerAgent": null,
"showCountyLink": false,
"postingIsRental": false,
"attributeSource": {
"infoString1": "",
"infoString2": "StreetEasy",
"infoString3": null
}
},
{
"date": "2022-04-19",
"time": 1650326400000,
"price": 1680000,
"pricePerSquareFoot": 1600,
"priceChangeRate": 0.3157018838814772,
"event": "Listed for sale",
"source": "StreetEasy",
"buyerAgent": null,
"sellerAgent": null,
"showCountyLink": false,
"postingIsRental": false,
"attributeSource": {
"infoString1": "",
"infoString2": "StreetEasy",
"infoString3": null
}
},
{
"date": "2008-11-11",
"time": 1226361600000,
"price": 1276885,
"pricePerSquareFoot": 1216,
"priceChangeRate": 0,
"event": "Sold",
"source": "Public Record",
"buyerAgent": null,
"sellerAgent": null,
"showCountyLink": false,
"postingIsRental": false,
"attributeSource": {
"infoString1": null,
"infoString2": "Public Record",
"infoString3": null
}
}
],
"resoFacts": {
"aboveGradeFinishedArea": null,
"accessibilityFeatures": null,
"additionalFeeInfo": null,
"additionalParcelsDescription": null,
"architecturalStyle": null,
"associations": [
{
"feeFrequency": "$1,066 monthly",
"name": null,
"phone": null
}
],
"associationFee": "$1,066 monthly",
"associationAmenities": [
"Laundry",
"Elevator(s)"
],
"associationFee2": null,
"associationFeeIncludes": [
"Maintenance"
],
"associationName": null,
"associationName2": null,
"associationPhone": null,
"associationPhone2": null,
"basementYN": null,
"buildingFeatures": null,
"buildingName": "Theatre Condominium",
"appliances": [
"Dishwasher",
"Washer/Dryer"
],
"atAGlanceFacts": [
{
"factLabel": "Type",
"factValue": "Condominium"
},
{
"factLabel": "Year Built",
"factValue": "1920"
},
{
"factLabel": "Heating",
"factValue": null
},
{
"factLabel": "Cooling",
"factValue": "Central Air"
},
{
"factLabel": "Parking",
"factValue": "No Data"
},
{
"factLabel": "HOA",
"factValue": "$1,066 monthly"
},
{
"factLabel": "Days on Zillow",
"factValue": "5 Days"
},
{
"factLabel": "Price/sqft",
"factValue": "$1,881"
},
{
"factLabel": "Offer Review Date",
"factValue": null
}
],
"attic": null,
"availabilityDate": null,
"basement": null,
"bathrooms": 1,
"bathroomsFull": 1,
"bathroomsHalf": 0,
"bathroomsOneQuarter": null,
"bathroomsPartial": null,
"bathroomsFloat": 1,
"bathroomsThreeQuarter": null,
"bedrooms": 2,
"belowGradeFinishedArea": null,
"bodyType": null,
"builderModel": null,
"builderName": null,
"buildingArea": "1,050",
"buildingAreaSource": null,
"canRaiseHorses": false,
"carportParkingCapacity": null,
"cityRegion": "New York",
"commonWalls": null,
"communityFeatures": null,
"compensationBasedOn": null,
"constructionMaterials": [],
"contingency": null,
"cooling": [
"Central Air"
],
"coveredParkingCapacity": null,
"cropsIncludedYN": null,
"cumulativeDaysOnMarket": null,
"developmentStatus": null,
"doorFeatures": null,
"electric": null,
"elevation": null,
"elevationUnits": null,
"entryLevel": null,
"entryLocation": null,
"exclusions": null,
"exteriorFeatures": [],
"feesAndDues": [
{
"type": "HOA",
"fee": "$1,066 monthly",
"name": null,
"phone": null
}
],
"fencing": null,
"fireplaceFeatures": null,
"fireplaces": null,
"flooring": [
"Hardwood"
],
"foundationArea": null,
"foundationDetails": [],
"frontageLength": null,
"frontageType": null,
"furnished": false,
"garageParkingCapacity": null,
"gas": null,
"greenBuildingVerificationType": null,
"greenEnergyEfficient": null,
"greenEnergyGeneration": null,
"greenIndoorAirQuality": null,
"greenSustainability": null,
"greenWaterConservation": null,
"hasAdditionalParcels": false,
"hasAssociation": true,
"hasAttachedGarage": null,
"hasAttachedProperty": false,
"hasCooling": true,
"hasCarport": null,
"hasElectricOnProperty": null,
"hasFireplace": null,
"hasGarage": false,
"hasHeating": null,
"hasHomeWarranty": false,
"hasLandLease": false,
"hasOpenParking": null,
"hasRentControl": null,
"hasSpa": false,
"hasPetsAllowed": true,
"hasPrivatePool": null,
"hasView": true,
"hasWaterfrontView": null,
"heating": null,
"highSchool": null,
"highSchoolDistrict": null,
"hoaFee": "$1,066 monthly",
"hoaFeeTotal": "$1,066 monthly",
"homeType": "Condo",
"horseAmenities": null,
"horseYN": null,
"inclusions": null,
"incomeIncludes": null,
"interiorFeatures": null,
"irrigationWaterRightsAcres": null,
"irrigationWaterRightsYN": null,
"isNewConstruction": null,
"isSeniorCommunity": null,
"landLeaseAmount": null,
"landLeaseExpirationDate": null,
"laundryFeatures": [
"Inside"
],
"leaseTerm": null,
"levels": null,
"listingId": null,
"listingTerms": null,
"lotFeatures": null,
"lotSize": null,
"lotSizeDimensions": null,
"livingArea": "1,050 sqft",
"livingAreaRange": null,
"livingAreaRangeUnits": null,
"livingQuarters": [],
"mainLevelBathrooms": null,
"mainLevelBedrooms": null,
"marketingType": null,
"middleOrJuniorSchool": null,
"middleOrJuniorSchoolDistrict": null,
"municipality": null,
"numberOfUnitsInCommunity": null,
"numberOfUnitsVacant": null,
"offerReviewDate": null,
"onMarketDate": 1777334400000,
"openParkingCapacity": null,
"otherEquipment": null,
"otherFacts": [],
"otherParking": null,
"otherStructures": null,
"ownership": null,
"ownershipType": null,
"parcelNumber": "004641312",
"parkingCapacity": 0,
"parkingFeatures": [],
"parkName": null,
"patioAndPorchFeatures": null,
"petsMaxWeight": null,
"poolFeatures": null,
"pricePerSquareFoot": 1881,
"propertyCondition": null,
"propertySubType": [
"Condominium"
],
"roadSurfaceType": null,
"roofType": null,
"rooms": [],
"securityFeatures": null,
"sewer": null,
"spaFeatures": null,
"specialListingConditions": "Resale",
"stories": null,
"storiesTotal": null,
"structureType": null,
"subdivisionName": "East Village",
"taxAnnualAmount": 15624,
"taxAssessedValue": 363709,
"tenantPays": null,
"topography": null,
"totalActualRent": null,
"utilities": null,
"vegetation": null,
"view": [
"City",
"Skyline"
],
"virtualTour": null,
"waterSource": null,
"waterBodyName": null,
"waterfrontFeatures": null,
"waterView": null,
"waterViewYN": null,
"windowFeatures": null,
"woodedArea": null,
"yearBuilt": 1920,
"yearBuiltEffective": null,
"zoning": null,
"zoningDescription": null,
"elementarySchool": null,
"elementarySchoolDistrict": null,
"listAOR": null
},
"responsivePhotosMixedSourcesJpeg": null,
"responsivePhotosMixedSourcesWebp": null,
"responsivePhotosOriginalRatioMixedSourcesJpeg": null,
"responsivePhotosOriginalRatioMixedSourcesWebp": null,
"schoolsGrades": null,
"schoolsLevel": null,
"schoolsLink": null,
"schoolsType": null,
"selfTourHasSelfTour": false,
"staticMapSourcesUrl": null,
"taxHistory": [
{
"time": 1714762440436,
"taxPaid": 19883,
"taxIncreaseRate": 0.033205155,
"value": 163669,
"valueIncreaseRate": 0.042258635
},
{
"time": 1683140040436,
"taxPaid": 19244,
"taxIncreaseRate": 0,
"value": 157033,
"valueIncreaseRate": -0.008523642
},
{
"time": 1651604040436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 158383,
"valueIncreaseRate": 0.023536103
},
{
"time": 1620068040436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 154741,
"valueIncreaseRate": -0.09704619
},
{
"time": 1588532040436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 171372,
"valueIncreaseRate": 0.022945419
},
{
"time": 1556909640436,
"taxPaid": 17778.92,
"taxIncreaseRate": -0.041110203,
"value": 167528,
"valueIncreaseRate": -0.0124033205
},
{
"time": 1525373640436,
"taxPaid": 18541.15,
"taxIncreaseRate": 0.080921896,
"value": 169632,
"valueIncreaseRate": 0.15291607
},
{
"time": 1493837640436,
"taxPaid": 17153.09,
"taxIncreaseRate": 0.072001114,
"value": 147133,
"valueIncreaseRate": 0.031195246
},
{
"time": 1462301640436,
"taxPaid": 16001,
"taxIncreaseRate": 0,
"value": 142682,
"valueIncreaseRate": 0.07730059
},
{
"time": 1430679240436,
"taxPaid": 16001,
"taxIncreaseRate": 0.7003312,
"value": 132444,
"valueIncreaseRate": -0.07490501
},
{
"time": 1399143240436,
"taxPaid": 9410.52,
"taxIncreaseRate": 0,
"value": 143168,
"valueIncreaseRate": 0.31474644
},
{
"time": 1367607240436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 108894,
"valueIncreaseRate": 0.16580127
},
{
"time": 1336071240436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 93407,
"valueIncreaseRate": 0.058916222
},
{
"time": 1304448840436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 88210,
"valueIncreaseRate": 0.100012474
},
{
"time": 1272912840436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 80190,
"valueIncreaseRate": 0.1887749
},
{
"time": 1241376840436,
"taxPaid": null,
"taxIncreaseRate": 0,
"value": 67456,
"valueIncreaseRate": 0
}
],
"thirdPartyVirtualTourApproved": false,
"tourEligibilityIsPropertyTourEligible": true
}
]
}