# Zillow Property Details (`alol/zillow-property-details`) Actor

Enrich Zillow properties by ZPID, URL, or address with your own per-property IDs. Get available photos, attribution, schools, and history in a shared Zillow/Realtor detail format, with explicit completeness status.

- **URL**: https://apify.com/alol/zillow-property-details.md
- **Developed by:** [Al Ol](https://apify.com/alol) (community)
- **Stats:** 1 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.45 / 1,000 complete property details

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Zillow Property Details Scraper: ZPID, URL or Address Lookup

**Scrape Zillow property details by ZPID, property URL, or postal address.** Extract available home facts, descriptions, photos, agent and broker attribution, schools, and price or tax history. Match each result to your own records and use the same normalized detail format as our Realtor.com Property Details Actor.

- **Keep bulk enrichment traceable:** supply per-property `externalId` and `correlationId` values for CRM matching and workflow tracking.
- **Get more than a listing card:** retrieve available descriptions, photos, agent and broker attribution, schools, lot size with units, and price or tax history.
- **Handle missing data explicitly:** versioned output distinguishes complete, partial, and not-found records and preserves unavailable values as null.

Collect versioned property records for CRM enrichment, property research, and listing analysis. Complete, partial, and not-found statuses make data gaps visible.

To discover property IDs before enrichment, use [Zillow Search](https://apify.com/alol/zillow-search) for listing cards or [Zillow Map Results](https://apify.com/alol/zillow-map-results) for lightweight map cards, then pass the selected ZPIDs to this Actor.

### Input examples

#### Correlated targets

```json
{
  "propertyTargets": [
    {
      "zpid": "123456789",
      "externalId": "crm-1",
      "correlationId": "trace-1"
    }
  ]
}
```

#### Simple ZPID list

```json
{
  "zpids": [
    "123456789",
    "987654321"
  ],
  "maxConcurrency": 5
}
```

#### URL target

```json
{
  "propertyUrls": [
    "https://www.zillow.com/homedetails/example/123456789_zpid/"
  ]
}
```

#### Address target

```json
{
  "addresses": [
    "100 Example Ave, Austin, TX 78704"
  ]
}
```

### Output examples

These synthetic examples illustrate the schema; they are not current property records. Availability varies by property. `complete` means the requested source sections passed validation, not that every optional field is populated.

#### Property-detail row

A complete record with populated facts, pricing, media and history.

```json
{
  "schemaVersion": 1,
  "recordType": "propertyDetail",
  "status": "complete",
  "externalId": null,
  "correlationId": null,
  "propertyId": "123456",
  "listingId": null,
  "url": "https://www.zillow.com/homedetails/123456_zpid/",
  "listingStatus": "forSale",
  "listingDates": {
    "listedAt": null,
    "updatedAt": "2026-07-10T00:00:00.000Z",
    "postedOn": null,
    "onMarketAt": null,
    "soldOn": null
  },
  "pricing": {
    "list": 450000,
    "min": null,
    "max": null,
    "currency": "USD",
    "perSqft": null,
    "lastSold": null,
    "lastSoldDate": null,
    "change": {
      "amount": -10000,
      "date": "2026-07-10"
    }
  },
  "location": {
    "address": {
      "line": "123 Example Street",
      "unit": null,
      "city": "Austin",
      "stateCode": "TX",
      "postalCode": "78704",
      "county": {
        "name": null,
        "fipsCode": null
      },
      "country": null,
      "neighborhood": null,
      "subdivision": null,
      "community": null,
      "timeZone": null,
      "full": "123 Example Street, Austin, TX 78704"
    },
    "coordinates": {
      "latitude": 30.2515,
      "longitude": -97.7623
    }
  },
  "description": "Illustrative three-bedroom home.",
  "facts": {
    "beds": 3,
    "baths": 2,
    "bathsFull": null,
    "bathsHalf": null,
    "bathsQuarter": null,
    "bathsThreeQuarter": null,
    "sqft": 1650,
    "lot": {
      "value": 6500,
      "unit": "sqft"
    },
    "yearBuilt": 1968,
    "stories": null,
    "type": "SINGLE_FAMILY",
    "subType": null,
    "units": null,
    "zoning": null,
    "garage": {
      "spaces": null,
      "maxSpaces": null,
      "hasGarage": null,
      "hasAttachedGarage": null
    }
  },
  "media": {
    "primaryPhoto": {
      "thumbnailUrl": "https://photos.zillowstatic.com/fp/aaa-p_c.jpg",
      "mediumUrl": "https://photos.zillowstatic.com/fp/aaa-p_c.jpg",
      "highResolutionUrl": "https://photos.zillowstatic.com/fp/aaa-uncropped_scaled_within_1536_1152.jpg",
      "type": "image",
      "caption": null,
      "description": null,
      "tags": []
    },
    "photoCount": 2,
    "photos": [
      {
        "url": "https://photos.zillowstatic.com/fp/aaa-uncropped_scaled_within_1536_1152.jpg",
        "type": "image",
        "caption": null,
        "description": null,
        "tags": []
      },
      {
        "url": "https://photos.zillowstatic.com/fp/bbb-p_c.jpg",
        "type": "image",
        "caption": null,
        "description": null,
        "tags": []
      }
    ],
    "virtualTours": []
  },
  "attribution": {
    "agents": [
      {
        "name": "Jane Broker",
        "email": null,
        "phone": "512-555-0100",
        "url": null,
        "type": "listingAgent",
        "licenseNumber": "TX-998877",
        "brokerName": "ATX Realty",
        "photoUrl": null
      }
    ],
    "advertisers": [],
    "branding": [
      {
        "name": "ATX Realty",
        "type": "broker",
        "logoUrl": null,
        "accentColor": null
      }
    ],
    "source": {
      "id": null,
      "type": null,
      "name": null,
      "listingId": null,
      "lastUpdatedAt": "2026-07-10T00:00:00.000Z",
      "disclaimerText": null,
      "disclaimerUrl": null
    }
  },
  "openHouses": [],
  "features": {
    "sections": [],
    "appliances": [
      "Dishwasher",
      "Refrigerator",
      "Microwave"
    ],
    "construction": [
      "Brick",
      "Wood"
    ],
    "heating": [
      "Central"
    ],
    "cooling": [
      "Central Air"
    ],
    "interior": [
      "Walk-in closet",
      "Granite counters"
    ],
    "parking": [
      "Garage",
      "Driveway"
    ],
    "exterior": [],
    "flooring": [],
    "utilities": [],
    "view": [],
    "waterSource": [],
    "sewer": [],
    "roof": null,
    "basement": null,
    "architecturalStyle": null,
    "levels": null,
    "fireplace": null,
    "pool": null,
    "contingencyType": null,
    "flags": {
      "isFSBA": null,
      "isFSBO": null,
      "isComingSoon": null,
      "isPending": null,
      "isOpenHouse": null,
      "isNewHome": null,
      "isForAuction": null,
      "isForeclosure": null,
      "isBankOwned": null
    }
  },
  "schools": {
    "total": 2,
    "items": [
      {
        "name": "Zilker Elementary",
        "type": null,
        "level": "Elementary",
        "rating": 8,
        "grades": [],
        "distance": 0.4,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      },
      {
        "name": "O Henry Middle",
        "type": null,
        "level": "Middle",
        "rating": 7,
        "grades": [],
        "distance": 1.1,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      }
    ]
  },
  "nearbySchools": {
    "total": 2,
    "items": [
      {
        "name": "Zilker Elementary",
        "type": null,
        "level": "Elementary",
        "rating": 8,
        "grades": [],
        "distance": 0.4,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      },
      {
        "name": "O Henry Middle",
        "type": null,
        "level": "Middle",
        "rating": 7,
        "grades": [],
        "distance": 1.1,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      }
    ]
  },
  "hoa": {
    "fee": 0,
    "details": null
  },
  "mortgage": {
    "loanAmount": null,
    "monthlyPayment": null,
    "rates": {
      "thirtyYearFixed": null,
      "fifteenYearFixed": null,
      "fiveYearArm": null
    }
  },
  "history": {
    "property": [
      {
        "date": "2026-07-10",
        "event": "Price change",
        "price": 450000,
        "priceChange": null,
        "priceChangeRate": null,
        "pricePerSqft": 273,
        "source": "MLS",
        "buyerAgent": null,
        "sellerAgent": null
      },
      {
        "date": "2026-06-20",
        "event": "Listed for sale",
        "price": 460000,
        "priceChange": null,
        "priceChangeRate": null,
        "pricePerSqft": 279,
        "source": "MLS",
        "buyerAgent": null,
        "sellerAgent": null
      }
    ],
    "tax": [
      {
        "year": 2024,
        "taxPaid": 8123.45,
        "assessedValue": 415000,
        "assessment": {
          "total": 415000,
          "building": null,
          "land": null
        },
        "market": {
          "total": null,
          "building": null,
          "land": null
        },
        "taxIncreaseRate": null,
        "valueIncreaseRate": null
      },
      {
        "year": 2023,
        "taxPaid": 7800,
        "assessedValue": 400000,
        "assessment": {
          "total": 400000,
          "building": null,
          "land": null
        },
        "market": {
          "total": null,
          "building": null,
          "land": null
        },
        "taxIncreaseRate": null,
        "valueIncreaseRate": null
      }
    ]
  },
  "quality": {
    "completeness": "complete",
    "missingSections": [],
    "reasons": []
  },
  "scrapedAt": "2026-09-13T00:00:00.000Z",
  "provider": "zillow",
  "provenance": {
    "provider": "zillow",
    "source": "zillow_graphql",
    "inputLocator": "123456",
    "servedByTier": null,
    "transport": null
  },
  "providerData": {
    "provider": "zillow",
    "daysOnZillow": 12,
    "rawStatus": "FOR_SALE",
    "formattedListingPrice": "$450,000",
    "formattedLotArea": "6,500 sqft",
    "zestimate": 462000,
    "rentZestimate": 2570,
    "zestimateLowPercent": null,
    "zestimateHighPercent": null,
    "pageViewCount": null,
    "favoriteCount": null,
    "tourViewCount": null,
    "taxAssessedValue": null,
    "taxAnnualAmount": null,
    "propertyTaxRate": null,
    "annualHomeownersInsurance": null,
    "parcelId": null,
    "isZillowOwned": null,
    "foreclosureTypes": {
      "isForeclosedNfs": null,
      "isPreforeclosure": null,
      "isAnyForeclosure": null,
      "wasNonRetailAuction": null,
      "wasForeclosed": null
    },
    "homeInsights": [],
    "schoolDistricts": {
      "elementary": null,
      "middle": null,
      "high": null,
      "elementaryDistrict": null,
      "middleDistrict": null,
      "highDistrict": null
    },
    "atAGlanceFacts": [],
    "staticMapUrl": null,
    "nearbyProperties": [
      {
        "zpid": "123457",
        "propertyUrl": "https://www.zillow.com/homedetails/123457_zpid/",
        "address": {
          "street": null,
          "city": null,
          "state": null,
          "zipCode": null
        },
        "coordinates": {
          "latitude": null,
          "longitude": null
        },
        "price": 475000,
        "bedrooms": 3,
        "bathrooms": 2,
        "livingArea": 1700,
        "homeType": null,
        "homeStatus": "forSale",
        "mainImage": null
      }
    ],
    "nearbyRentals": {
      "searchUrl": null,
      "homes": [],
      "buildings": []
    },
    "comps": [
      {
        "zpid": "123458",
        "propertyUrl": "https://www.zillow.com/homedetails/123458_zpid/",
        "address": {
          "street": null,
          "city": null,
          "state": null,
          "zipCode": null
        },
        "coordinates": {
          "latitude": null,
          "longitude": null
        },
        "price": 430000,
        "bedrooms": 3,
        "bathrooms": 2,
        "livingArea": 1600,
        "homeType": null,
        "homeStatus": "sold",
        "mainImage": null
      }
    ],
    "listingProvider": null,
    "listedBy": [],
    "buildingAttributes": null,
    "listingAttribution": {
      "broker": {
        "phoneNumber": null
      },
      "lastCheckedAt": null,
      "listingAgreement": null,
      "listingOffices": [],
      "notMlsSourcedListing": null,
      "trueStatus": null
    },
    "climateRisk": {
      "heat": null,
      "flood": {
        "historicCountPropertyAll": null,
        "femaZone": null,
        "insuranceRecommendation": null,
        "insuranceSeparatePolicy": null,
        "probability": [],
        "riskScore": {
          "label": "Minimal",
          "value": null,
          "max": null
        },
        "source": {
          "url": null
        }
      },
      "air": null,
      "fire": null,
      "wind": null
    }
  }
}
```

#### Partial property-detail row

Available data is preserved; requested history is missing. This row is unbilled.

```json
{
  "schemaVersion": 1,
  "recordType": "propertyDetail",
  "status": "partial",
  "externalId": null,
  "correlationId": null,
  "propertyId": "123456",
  "listingId": null,
  "url": "https://www.zillow.com/homedetails/123456_zpid/",
  "listingStatus": "forSale",
  "listingDates": {
    "listedAt": null,
    "updatedAt": "2026-07-10T00:00:00.000Z",
    "postedOn": null,
    "onMarketAt": null,
    "soldOn": null
  },
  "pricing": {
    "list": 450000,
    "min": null,
    "max": null,
    "currency": "USD",
    "perSqft": null,
    "lastSold": null,
    "lastSoldDate": null,
    "change": {
      "amount": -10000,
      "date": "2026-07-10"
    }
  },
  "location": {
    "address": {
      "line": "123 Example Street",
      "unit": null,
      "city": "Austin",
      "stateCode": "TX",
      "postalCode": "78704",
      "county": {
        "name": null,
        "fipsCode": null
      },
      "country": null,
      "neighborhood": null,
      "subdivision": null,
      "community": null,
      "timeZone": null,
      "full": "123 Example Street, Austin, TX 78704"
    },
    "coordinates": {
      "latitude": 30.2515,
      "longitude": -97.7623
    }
  },
  "description": "Illustrative three-bedroom home.",
  "facts": {
    "beds": 3,
    "baths": 2,
    "bathsFull": null,
    "bathsHalf": null,
    "bathsQuarter": null,
    "bathsThreeQuarter": null,
    "sqft": 1650,
    "lot": {
      "value": 6500,
      "unit": "sqft"
    },
    "yearBuilt": 1968,
    "stories": null,
    "type": "SINGLE_FAMILY",
    "subType": null,
    "units": null,
    "zoning": null,
    "garage": {
      "spaces": null,
      "maxSpaces": null,
      "hasGarage": null,
      "hasAttachedGarage": null
    }
  },
  "media": {
    "primaryPhoto": {
      "thumbnailUrl": "https://photos.zillowstatic.com/fp/aaa-p_c.jpg",
      "mediumUrl": "https://photos.zillowstatic.com/fp/aaa-p_c.jpg",
      "highResolutionUrl": "https://photos.zillowstatic.com/fp/aaa-uncropped_scaled_within_1536_1152.jpg",
      "type": "image",
      "caption": null,
      "description": null,
      "tags": []
    },
    "photoCount": 2,
    "photos": [
      {
        "url": "https://photos.zillowstatic.com/fp/aaa-uncropped_scaled_within_1536_1152.jpg",
        "type": "image",
        "caption": null,
        "description": null,
        "tags": []
      },
      {
        "url": "https://photos.zillowstatic.com/fp/bbb-p_c.jpg",
        "type": "image",
        "caption": null,
        "description": null,
        "tags": []
      }
    ],
    "virtualTours": []
  },
  "attribution": {
    "agents": [
      {
        "name": "Jane Broker",
        "email": null,
        "phone": "512-555-0100",
        "url": null,
        "type": "listingAgent",
        "licenseNumber": "TX-998877",
        "brokerName": "ATX Realty",
        "photoUrl": null
      }
    ],
    "advertisers": [],
    "branding": [
      {
        "name": "ATX Realty",
        "type": "broker",
        "logoUrl": null,
        "accentColor": null
      }
    ],
    "source": {
      "id": null,
      "type": null,
      "name": null,
      "listingId": null,
      "lastUpdatedAt": "2026-07-10T00:00:00.000Z",
      "disclaimerText": null,
      "disclaimerUrl": null
    }
  },
  "openHouses": [],
  "features": {
    "sections": [],
    "appliances": [
      "Dishwasher",
      "Refrigerator",
      "Microwave"
    ],
    "construction": [
      "Brick",
      "Wood"
    ],
    "heating": [
      "Central"
    ],
    "cooling": [
      "Central Air"
    ],
    "interior": [
      "Walk-in closet",
      "Granite counters"
    ],
    "parking": [
      "Garage",
      "Driveway"
    ],
    "exterior": [],
    "flooring": [],
    "utilities": [],
    "view": [],
    "waterSource": [],
    "sewer": [],
    "roof": null,
    "basement": null,
    "architecturalStyle": null,
    "levels": null,
    "fireplace": null,
    "pool": null,
    "contingencyType": null,
    "flags": {
      "isFSBA": null,
      "isFSBO": null,
      "isComingSoon": null,
      "isPending": null,
      "isOpenHouse": null,
      "isNewHome": null,
      "isForAuction": null,
      "isForeclosure": null,
      "isBankOwned": null
    }
  },
  "schools": {
    "total": 2,
    "items": [
      {
        "name": "Zilker Elementary",
        "type": null,
        "level": "Elementary",
        "rating": 8,
        "grades": [],
        "distance": 0.4,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      },
      {
        "name": "O Henry Middle",
        "type": null,
        "level": "Middle",
        "rating": 7,
        "grades": [],
        "distance": 1.1,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      }
    ]
  },
  "nearbySchools": {
    "total": 2,
    "items": [
      {
        "name": "Zilker Elementary",
        "type": null,
        "level": "Elementary",
        "rating": 8,
        "grades": [],
        "distance": 0.4,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      },
      {
        "name": "O Henry Middle",
        "type": null,
        "level": "Middle",
        "rating": 7,
        "grades": [],
        "distance": 1.1,
        "district": null,
        "studentCount": null,
        "parentRating": null,
        "reviewCount": null,
        "url": null
      }
    ]
  },
  "hoa": {
    "fee": 0,
    "details": null
  },
  "mortgage": {
    "loanAmount": null,
    "monthlyPayment": null,
    "rates": {
      "thirtyYearFixed": null,
      "fifteenYearFixed": null,
      "fiveYearArm": null
    }
  },
  "history": {
    "property": [],
    "tax": []
  },
  "quality": {
    "completeness": "partial",
    "missingSections": [
      "history"
    ],
    "reasons": [
      "History was unavailable in this illustrative response."
    ]
  },
  "scrapedAt": "2026-09-13T00:00:00.000Z",
  "provider": "zillow",
  "provenance": {
    "provider": "zillow",
    "source": "zillow_graphql",
    "inputLocator": "123456",
    "servedByTier": null,
    "transport": null
  },
  "providerData": {
    "provider": "zillow",
    "daysOnZillow": 12,
    "rawStatus": "FOR_SALE",
    "formattedListingPrice": "$450,000",
    "formattedLotArea": "6,500 sqft",
    "zestimate": 462000,
    "rentZestimate": 2570,
    "zestimateLowPercent": null,
    "zestimateHighPercent": null,
    "pageViewCount": null,
    "favoriteCount": null,
    "tourViewCount": null,
    "taxAssessedValue": null,
    "taxAnnualAmount": null,
    "propertyTaxRate": null,
    "annualHomeownersInsurance": null,
    "parcelId": null,
    "isZillowOwned": null,
    "foreclosureTypes": {
      "isForeclosedNfs": null,
      "isPreforeclosure": null,
      "isAnyForeclosure": null,
      "wasNonRetailAuction": null,
      "wasForeclosed": null
    },
    "homeInsights": [],
    "schoolDistricts": {
      "elementary": null,
      "middle": null,
      "high": null,
      "elementaryDistrict": null,
      "middleDistrict": null,
      "highDistrict": null
    },
    "atAGlanceFacts": [],
    "staticMapUrl": null,
    "nearbyProperties": [
      {
        "zpid": "123457",
        "propertyUrl": "https://www.zillow.com/homedetails/123457_zpid/",
        "address": {
          "street": null,
          "city": null,
          "state": null,
          "zipCode": null
        },
        "coordinates": {
          "latitude": null,
          "longitude": null
        },
        "price": 475000,
        "bedrooms": 3,
        "bathrooms": 2,
        "livingArea": 1700,
        "homeType": null,
        "homeStatus": "forSale",
        "mainImage": null
      }
    ],
    "nearbyRentals": {
      "searchUrl": null,
      "homes": [],
      "buildings": []
    },
    "comps": [],
    "listingProvider": null,
    "listedBy": [],
    "buildingAttributes": null,
    "listingAttribution": {
      "broker": {
        "phoneNumber": null
      },
      "lastCheckedAt": null,
      "listingAgreement": null,
      "listingOffices": [],
      "notMlsSourcedListing": null,
      "trueStatus": null
    },
    "climateRisk": {
      "heat": null,
      "flood": {
        "historicCountPropertyAll": null,
        "femaZone": null,
        "insuranceRecommendation": null,
        "insuranceSeparatePolicy": null,
        "probability": [],
        "riskScore": {
          "label": "Minimal",
          "value": null,
          "max": null
        },
        "source": {
          "url": null
        }
      },
      "air": null,
      "fire": null,
      "wind": null
    }
  }
}
```

#### Address-resolution error row

A missing property preserves stable containers and is unbilled.

```json
{
  "schemaVersion": 1,
  "recordType": "propertyDetail",
  "status": "notFound",
  "externalId": null,
  "correlationId": null,
  "propertyId": null,
  "listingId": null,
  "url": null,
  "listingStatus": null,
  "listingDates": {
    "listedAt": null,
    "updatedAt": null,
    "postedOn": null,
    "onMarketAt": null,
    "soldOn": null
  },
  "pricing": {
    "list": null,
    "min": null,
    "max": null,
    "currency": null,
    "perSqft": null,
    "lastSold": null,
    "lastSoldDate": null,
    "change": null
  },
  "location": {
    "address": {
      "line": null,
      "unit": null,
      "city": null,
      "stateCode": null,
      "postalCode": null,
      "county": null,
      "country": null,
      "neighborhood": null,
      "subdivision": null,
      "community": null,
      "timeZone": null,
      "full": null
    },
    "coordinates": {
      "latitude": null,
      "longitude": null
    }
  },
  "description": null,
  "facts": {
    "beds": null,
    "baths": null,
    "bathsFull": null,
    "bathsHalf": null,
    "bathsQuarter": null,
    "bathsThreeQuarter": null,
    "sqft": null,
    "lot": null,
    "yearBuilt": null,
    "stories": null,
    "type": null,
    "subType": null,
    "units": null,
    "zoning": null,
    "garage": null
  },
  "media": {
    "primaryPhoto": null,
    "photoCount": null,
    "photos": [],
    "virtualTours": []
  },
  "attribution": {
    "agents": [],
    "advertisers": [],
    "branding": [],
    "source": null
  },
  "openHouses": [],
  "features": {
    "sections": [],
    "appliances": [],
    "construction": [],
    "heating": [],
    "cooling": [],
    "interior": [],
    "parking": [],
    "exterior": [],
    "flooring": [],
    "utilities": [],
    "view": [],
    "waterSource": [],
    "sewer": [],
    "roof": null,
    "basement": null,
    "architecturalStyle": null,
    "levels": null,
    "fireplace": null,
    "pool": null,
    "contingencyType": null,
    "flags": null
  },
  "schools": null,
  "nearbySchools": null,
  "hoa": null,
  "mortgage": null,
  "history": {
    "property": [],
    "tax": []
  },
  "quality": {
    "completeness": "notFound",
    "missingSections": [],
    "reasons": [
      "addressNotResolved"
    ]
  },
  "scrapedAt": "2026-09-13T00:00:00.000Z",
  "provider": "zillow",
  "provenance": {
    "provider": "zillow",
    "source": "zillow_graphql",
    "inputLocator": "Unknown example address",
    "servedByTier": null,
    "transport": null
  },
  "providerData": {
    "provider": "zillow",
    "daysOnZillow": null,
    "rawStatus": null,
    "formattedListingPrice": null,
    "formattedLotArea": null,
    "zestimate": null,
    "rentZestimate": null,
    "zestimateLowPercent": null,
    "zestimateHighPercent": null,
    "pageViewCount": null,
    "favoriteCount": null,
    "tourViewCount": null,
    "taxAssessedValue": null,
    "taxAnnualAmount": null,
    "propertyTaxRate": null,
    "annualHomeownersInsurance": null,
    "parcelId": null,
    "isZillowOwned": null,
    "foreclosureTypes": {
      "isForeclosedNfs": null,
      "isPreforeclosure": null,
      "isAnyForeclosure": null,
      "wasNonRetailAuction": null,
      "wasForeclosed": null
    },
    "homeInsights": [],
    "schoolDistricts": {
      "elementary": null,
      "middle": null,
      "high": null,
      "elementaryDistrict": null,
      "middleDistrict": null,
      "highDistrict": null
    },
    "atAGlanceFacts": [],
    "staticMapUrl": null,
    "nearbyProperties": [],
    "nearbyRentals": {
      "searchUrl": null,
      "homes": [],
      "buildings": []
    },
    "comps": [],
    "listingProvider": null,
    "listedBy": [],
    "buildingAttributes": null,
    "listingAttribution": {
      "broker": {
        "phoneNumber": null
      },
      "lastCheckedAt": null,
      "listingAgreement": null,
      "listingOffices": [],
      "notMlsSourcedListing": null,
      "trueStatus": null
    },
    "climateRisk": null
  }
}
```

#### Fetch error row

A failed fetch uses the error contract below and is unbilled. Error rows have an `error` field rather than a property status.

```json
{
  "error": "parseError",
  "url": "https://www.zillow.com/homedetails/123456_zpid/",
  "message": "The property response could not be validated.",
  "scrapedAt": "2026-09-13T00:00:00.000Z"
}
```

Nearby properties and source comps are Zillow recommendations. They are not a guaranteed sold cohort within a chosen radius or date window. Current Zestimate is distinct from historical sale prices; a Zestimate time series is not included. Climate fields reproduce available source indicators and may be absent; they are not a complete independent risk assessment.

### Pricing

There is no fixed start charge, and platform usage is included. Paid runs request at least one result. Only successfully published complete rows are billed; partial, not-found, and error rows are free. Prices may change.

The effective result price depends on the customer's Apify account tier.

| Tier | Per complete result | Per 1,000 complete results |
| --- | ---: | ---: |
| FREE | `$0.00310` | `$3.10` |
| BRONZE | `$0.00255` | `$2.55` |
| SILVER | `$0.00205` | `$2.05` |
| GOLD | `$0.00145` | `$1.45` |

### FAQ

#### Can I look up Zillow property data by address or ZPID?

Yes. Supply `addresses`, `zpids`, or `propertyUrls`, or use `propertyTargets` to attach identifiers to each property. Address inputs are resolved to a Zillow property ID. Unresolved targets and missing source sections are represented explicitly in the output.

#### Why are groups nested?

Nested groups give both providers one semantic vocabulary and prevent duplicate prices, addresses, media, and histories.

#### What does partial mean?

The property arrived, but a requested verified section did not. Partial rows are not billed as complete rows.

### Related Actors

Explore our other real-estate Actors for property discovery, enrichment, market analysis, and monitoring:

- [Zillow Search](https://apify.com/alol/zillow-search) — Collect listing cards by ZIP code, location, search URL, or map bounds.
- [Zillow Map Results](https://apify.com/alol/zillow-map-results) — Collect lightweight map cards with coordinates and Zillow property IDs.
- [Zillow Area Statistic](https://apify.com/alol/zillow-area-statistic) — Get ZIP-level statistics calculated from Zillow sale or rental listings.
- [Zillow Listing Monitor](https://apify.com/alol/zillow-listing-monitor) — Track new listings, price changes, status changes, and confirmed delistings across repeated scans.
- [Realtor.com Listings by ZIP](https://apify.com/alol/realtor-search) — Collect Realtor.com listing cards and separate market-statistics rows by ZIP code.
- [Realtor.com ZIP Market Stats](https://apify.com/alol/realtor-zip-statistics) — Get Realtor.com housing-market aggregates by ZIP code without collecting listing cards.
- [Realtor.com Property Details](https://apify.com/alol/realtor-property-details) — Enrich Realtor.com property IDs or detail URLs with detailed property records.

### Responsible use and data availability

This independent Actor is not affiliated with Zillow. Use it lawfully and respect applicable terms, privacy, and intellectual-property rights. Upstream availability and completeness can change.

# Actor input Schema

## `externalId` (type: `string`):

Optional caller-owned run ID copied to every output row. A propertyTargets item can override it.

## `correlationId` (type: `string`):

Optional trace/workflow ID copied to every output row. A propertyTargets item can override it.

## `propertyTargets` (type: `array`):

Preferred bulk-detail input. Each object contains exactly one of url, zpid or address, plus optional externalId and correlationId copied to its output.

## `propertyUrls` (type: `array`):

Zillow /homedetails/ URLs to fetch full records for.

## `zpids` (type: `array`):

Zillow property IDs to fetch full records for.

## `addresses` (type: `array`):

Postal addresses to resolve to ZPIDs, then fetch. e.g. '1600 Pennsylvania Ave, Washington, DC'.

## `maxResults` (type: `integer`):

Maximum complete property rows. Paid runs require at least one requested result.

## `maxTotalChargeUsd` (type: `number`):

Hard limit for pay-per-event charges in this run. The Actor stops writing paid results before the limit is exceeded.

## `maxUpstreamAttempts` (type: `integer`):

Optional run-level ceiling for Zillow, Apify Proxy, and Scraping Browser attempts. The operator deployment limit can only reduce this value.

## `maxUpstreamCostUsd` (type: `number`):

Optional best-effort ceiling for all measured upstream proxy and Scraping Browser costs, including search tiers and the detail Apify fallback. The final request may cause a small overshoot.

## `maxConcurrency` (type: `integer`):

Maximum parallel requests.

## Actor input object example

```json
{
  "zpids": [
    "32281328"
  ],
  "maxResults": 1,
  "maxConcurrency": 10
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "zpids": [
        "32281328"
    ],
    "maxResults": 1
};

// Run the Actor and wait for it to finish
const run = await client.actor("alol/zillow-property-details").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "zpids": ["32281328"],
    "maxResults": 1,
}

# Run the Actor and wait for it to finish
run = client.actor("alol/zillow-property-details").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "zpids": [
    "32281328"
  ],
  "maxResults": 1
}' |
apify call alol/zillow-property-details --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,alol/zillow-property-details"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/murnIditnmPhW3VL7/builds/oPY35gSGFFUcdewH1/openapi.json
