{
  "openapi": "3.0.1",
  "info": {
    "title": "Zillow Listings Intelligence",
    "description": "Extract 350+ data fields per property from Zillow. Search by location, coordinates, URLs, ZPIDs, or addresses with 20+ filters. Includes photos, schools, price history, agent info, affordability, and Zestimate history. Building    data with floor plans and comps.",
    "version": "1.0",
    "x-build-id": "v0wiu9tZSOQ49UyXW"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/jdtpnjtp~zillow-property-building-intelligence/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-jdtpnjtp-zillow-property-building-intelligence",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/jdtpnjtp~zillow-property-building-intelligence/runs": {
      "post": {
        "operationId": "runs-sync-jdtpnjtp-zillow-property-building-intelligence",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/jdtpnjtp~zillow-property-building-intelligence/run-sync": {
      "post": {
        "operationId": "run-sync-jdtpnjtp-zillow-property-building-intelligence",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "urls": {
            "title": "Zillow URLs",
            "maxItems": 10,
            "type": "array",
            "description": "Paste up to 10 Zillow URLs. Auto-detects: search pages, property pages (/homedetails/.../ZPID_zpid/), building pages (/b/KEY/). Mix types freely.",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City, ZIP, neighborhood, or address (e.g. 'Austin, TX', '90210')"
          },
          "status": {
            "title": "Listing Status",
            "enum": [
              "for_sale",
              "for_rent",
              "sold"
            ],
            "type": "string",
            "description": "Filter by listing status",
            "default": "for_sale"
          },
          "resultType": {
            "title": "Result Type",
            "enum": [
              "list",
              "map"
            ],
            "type": "string",
            "description": "list: 41/page with details. map: 500/page, compact.",
            "default": "list"
          },
          "maxResults": {
            "title": "Max Results",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Total results to scrape across all pages (1-5000)",
            "default": 100
          },
          "sort": {
            "title": "Sort By",
            "enum": [
              "relevance",
              "newest",
              "price_low",
              "price_high",
              "beds",
              "baths",
              "sqft",
              "lot_size"
            ],
            "type": "string",
            "description": "Sort order for search results",
            "default": "relevance"
          },
          "west": {
            "title": "West Longitude",
            "type": "number",
            "description": "Western boundary longitude"
          },
          "east": {
            "title": "East Longitude",
            "type": "number",
            "description": "Eastern boundary longitude"
          },
          "south": {
            "title": "South Latitude",
            "type": "number",
            "description": "Southern boundary latitude"
          },
          "north": {
            "title": "North Latitude",
            "type": "number",
            "description": "Northern boundary latitude"
          },
          "zoom": {
            "title": "Zoom Level",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Map zoom level (higher = more focused area)",
            "default": 13
          },
          "priceMin": {
            "title": "Min Price ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum listing price"
          },
          "priceMax": {
            "title": "Max Price ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum listing price"
          },
          "bedsMin": {
            "title": "Min Bedrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of bedrooms"
          },
          "bedsMax": {
            "title": "Max Bedrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of bedrooms"
          },
          "bathsMin": {
            "title": "Min Bathrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of bathrooms"
          },
          "bathsMax": {
            "title": "Max Bathrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of bathrooms"
          },
          "sqftMin": {
            "title": "Min Sq Ft",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum living area (sq ft)"
          },
          "sqftMax": {
            "title": "Max Sq Ft",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum living area (sq ft)"
          },
          "lotMin": {
            "title": "Min Lot Size (sq ft)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum lot size"
          },
          "lotMax": {
            "title": "Max Lot Size (sq ft)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum lot size"
          },
          "yearBuiltMin": {
            "title": "Min Year Built",
            "type": "integer",
            "description": "Minimum year built"
          },
          "yearBuiltMax": {
            "title": "Max Year Built",
            "type": "integer",
            "description": "Maximum year built"
          },
          "daysOn": {
            "title": "Max Days on Zillow",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum days on Zillow"
          },
          "homeType": {
            "title": "Home Type",
            "type": "array",
            "description": "Filter by property type. Valid: house, condo, townhouse, apartment, land, manufactured, multi_family",
            "items": {
              "type": "string"
            }
          },
          "paymentMin": {
            "title": "Min Monthly Payment ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum monthly payment"
          },
          "paymentMax": {
            "title": "Max Monthly Payment ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum monthly payment"
          },
          "creditScore": {
            "title": "Credit Score",
            "enum": [
              "CS579_AND_BELOW",
              "CS580_619",
              "CS620_659",
              "CS660_719",
              "CS720_AND_ABOVE"
            ],
            "type": "string",
            "description": "Credit score range for payment calculations"
          },
          "downPayment": {
            "title": "Down Payment (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Down payment percentage (0-100)"
          },
          "hasGarage": {
            "title": "Has Garage",
            "type": "boolean",
            "description": "Filter properties with a garage"
          },
          "hasPool": {
            "title": "Has Pool",
            "type": "boolean",
            "description": "Filter properties with a pool"
          },
          "hasBasement": {
            "title": "Has Basement",
            "type": "boolean",
            "description": "Filter properties with a basement"
          },
          "basementFinished": {
            "title": "Finished Basement",
            "type": "boolean",
            "description": "Finished basement only"
          },
          "basementUnfinished": {
            "title": "Unfinished Basement",
            "type": "boolean",
            "description": "Unfinished basement"
          },
          "has3dTour": {
            "title": "Has 3D Tour",
            "type": "boolean",
            "description": "Properties with 3D virtual tour"
          },
          "singleStory": {
            "title": "Single Story",
            "type": "boolean",
            "description": "Single story only"
          },
          "newConstruction": {
            "title": "New Construction",
            "type": "boolean",
            "description": "New construction only"
          },
          "foreclosure": {
            "title": "Foreclosure",
            "type": "boolean",
            "description": "Foreclosure listings"
          },
          "auction": {
            "title": "Auction",
            "type": "boolean",
            "description": "Auction listings"
          },
          "comingSoon": {
            "title": "Coming Soon",
            "type": "boolean",
            "description": "Coming soon listings"
          },
          "parkView": {
            "title": "Park View",
            "type": "boolean",
            "description": "Park view"
          },
          "waterView": {
            "title": "Water View",
            "type": "boolean",
            "description": "Water view"
          },
          "mountainView": {
            "title": "Mountain View",
            "type": "boolean",
            "description": "Mountain view"
          },
          "zpids": {
            "title": "Property IDs (ZPIDs)",
            "type": "array",
            "description": "List of Zillow Property IDs (e.g. 2061132, 30610240)",
            "items": {
              "type": "string"
            }
          },
          "addresses": {
            "title": "Addresses",
            "type": "array",
            "description": "Addresses to look up (e.g. '341 Hancock St, Brooklyn, NY 11216')",
            "items": {
              "type": "string"
            }
          },
          "includePhotos": {
            "title": "Photos",
            "type": "boolean",
            "description": "Full photo gallery with 6 resolution variants (+$0.001/property)",
            "default": false
          },
          "includeSchools": {
            "title": "Schools",
            "type": "boolean",
            "description": "Assigned & nearby schools with ratings",
            "default": false
          },
          "includeSimilar": {
            "title": "Similar Properties",
            "type": "boolean",
            "description": "Similar properties list",
            "default": false
          },
          "includeNearby": {
            "title": "Nearby Properties",
            "type": "boolean",
            "description": "Nearby for-sale & for-rent properties",
            "default": false
          },
          "includeHistory": {
            "title": "Price & Tax History",
            "type": "boolean",
            "description": "Price history + tax history",
            "default": false
          },
          "includeAgent": {
            "title": "Listing Agent",
            "type": "boolean",
            "description": "Listing agent, broker, MLS info",
            "default": false
          },
          "includeAffordability": {
            "title": "Affordability",
            "type": "boolean",
            "description": "Monthly payment breakdown, loan details (+$0.001/property)",
            "default": false
          },
          "includeZestimateHistory": {
            "title": "Zestimate History",
            "type": "boolean",
            "description": "Historical Zestimate time series",
            "default": false
          },
          "includeFloorPlans": {
            "title": "Floor Plans",
            "type": "boolean",
            "description": "Floor plans with pricing (buildings only)",
            "default": false
          },
          "includeComps": {
            "title": "Comparable Properties",
            "type": "boolean",
            "description": "Comparable properties (buildings only)",
            "default": false
          },
          "includeBuildingPhotos": {
            "title": "Building Photos",
            "type": "boolean",
            "description": "Building photo gallery",
            "default": false
          },
          "includeBuildingSchools": {
            "title": "Building Schools",
            "type": "boolean",
            "description": "Assigned schools for building",
            "default": false
          },
          "includeBuildingNearby": {
            "title": "Building Nearby",
            "type": "boolean",
            "description": "Nearby amenities & POIs",
            "default": false
          },
          "includeBuildingMarket": {
            "title": "Building Market Data",
            "type": "boolean",
            "description": "Market trends for building area",
            "default": false
          },
          "includeBuildingReviews": {
            "title": "Building Reviews",
            "type": "boolean",
            "description": "Building reviews",
            "default": false
          },
          "enrichSearchResults": {
            "title": "Enrich Search Results",
            "type": "boolean",
            "description": "Fetch full 350+ field details for every search result. Charges property-detail ($0.006) per item instead of search-result ($0.003).",
            "default": false
          },
          "apiBaseUrl": {
            "title": "API Base URL",
            "type": "string",
            "description": "API base URL (for development/staging only)",
            "default": "https://api.zillow-pulse.co"
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Maximum parallel API requests (1-10)",
            "default": 5
          },
          "requestTimeout": {
            "title": "Request Timeout (seconds)",
            "minimum": 5,
            "maximum": 120,
            "type": "integer",
            "description": "Timeout per API request in seconds",
            "default": 30
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}