{
  "openapi": "3.0.1",
  "info": {
    "title": "Zillow Scraper & Zillow API: Listings, Prices, Agent Contacts",
    "description": "Extract Zillow property data in bulk, no login. City, ZIP, or link. Every property with the full record: price, price cuts, beds, baths, sqft, year built, photos, description, MLS ID, price history, and the listing agent name and phone. Filter, paginate. For sale, rent, sold.",
    "version": "0.1",
    "x-build-id": "B5HHcwpKfGMLWEZuX"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crustapi~zillow-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crustapi-zillow-scraper",
        "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/crustapi~zillow-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crustapi-zillow-scraper",
        "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/crustapi~zillow-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crustapi-zillow-scraper",
        "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",
        "required": [
          "searches"
        ],
        "properties": {
          "searches": {
            "title": "Locations or Zillow links",
            "minItems": 1,
            "type": "array",
            "description": "One per line. Paste a city, a ZIP code, or a Zillow search link to get every property in that area. Paste a link to one property to get its full details. You can mix them.",
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "Max properties to scrape",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "The most properties to return per location you enter. A single property link is not affected.",
            "default": 100
          },
          "listingType": {
            "title": "For sale, for rent, or sold",
            "enum": [
              "forSale",
              "forRent",
              "sold"
            ],
            "type": "string",
            "description": "Which listings to include in an area search. A property link always returns that property.",
            "default": "forSale"
          },
          "priceMin": {
            "title": "Min price",
            "minimum": 0,
            "type": "integer",
            "description": "Only properties at or above this price. Leave blank for no minimum."
          },
          "priceMax": {
            "title": "Max price",
            "minimum": 0,
            "type": "integer",
            "description": "Only properties at or below this price. Leave blank for no maximum."
          },
          "bedsMin": {
            "title": "Min beds",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "type": "string",
            "description": "Only properties with at least this many bedrooms.",
            "default": "0"
          },
          "bathsMin": {
            "title": "Min baths",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4"
            ],
            "type": "string",
            "description": "Only properties with at least this many bathrooms.",
            "default": "0"
          },
          "homeTypes": {
            "title": "Property type",
            "type": "array",
            "description": "Leave empty for all types. Pick one or more to narrow it down.",
            "items": {
              "type": "string",
              "enum": [
                "house",
                "townhome",
                "condo",
                "multifamily",
                "apartment",
                "land",
                "manufactured"
              ],
              "enumTitles": [
                "Houses",
                "Townhomes",
                "Condos",
                "Multi-family",
                "Apartments",
                "Lots / Land",
                "Manufactured"
              ]
            }
          },
          "daysOn": {
            "title": "New listings",
            "enum": [
              "0",
              "1",
              "7",
              "14",
              "30",
              "90"
            ],
            "type": "string",
            "description": "Only homes listed within this time. Great for finding fresh listings first.",
            "default": "0"
          },
          "priceReduced": {
            "title": "Price reduced only",
            "type": "boolean",
            "description": "Only homes with a recent price cut. Good for finding motivated sellers.",
            "default": false
          },
          "sqftMin": {
            "title": "Min square feet",
            "minimum": 0,
            "type": "integer",
            "description": "Only homes at or above this size. Leave blank for no minimum."
          },
          "sqftMax": {
            "title": "Max square feet",
            "minimum": 0,
            "type": "integer",
            "description": "Only homes at or below this size. Leave blank for no maximum."
          },
          "builtMin": {
            "title": "Built after",
            "minimum": 1800,
            "type": "integer",
            "description": "Only homes built in or after this year. Leave blank for no minimum."
          },
          "builtMax": {
            "title": "Built before",
            "minimum": 1800,
            "type": "integer",
            "description": "Only homes built in or before this year. Leave blank for no maximum."
          },
          "lotMin": {
            "title": "Min lot size",
            "minimum": 0,
            "type": "integer",
            "description": "Only homes with a lot at or above this size. Leave blank for no minimum."
          },
          "lotMax": {
            "title": "Max lot size",
            "minimum": 0,
            "type": "integer",
            "description": "Only homes with a lot at or below this size. Leave blank for no maximum."
          },
          "hoaMax": {
            "title": "Max HOA fee",
            "minimum": 0,
            "type": "integer",
            "description": "Only homes with a monthly HOA fee at or below this. Leave blank for no maximum."
          },
          "keywords": {
            "title": "Keywords",
            "type": "string",
            "description": "Only homes whose listing mentions this, like pool, waterfront, or acreage."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}