Skip to content
Eden Engine

Zillow Home Search (by City, ZIP, or Neighborhood)

omnial/search-homes-for-sale

Given a location (city and state, ZIP code, or neighborhood), returns a page of homes currently listed for sale there: address, list price, Zestimate, beds/baths/square footage, listing status, days on Zillow, recent price changes, and open house times when scheduled. Supports paging through additional results with the optional page parameter.

activeper callv1
Provider
Web & Business Data Network
Category
real-estate
Provider price
$0.06825 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "location"
  ],
  "properties": {
    "page": {
      "type": "integer",
      "description": "Page number for pagination (1-based)"
    },
    "location": {
      "type": "string",
      "description": "City and state, ZIP code, or neighborhood (e.g., 'Seattle, WA', '90210', 'Capitol Hill, Seattle, WA')"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "listings": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "area": {
                "type": "number",
                "description": "Square footage."
              },
              "beds": {
                "type": "number"
              },
              "zpid": {
                "type": "string",
                "description": "Zillow property ID, usable with a property-detail lookup."
              },
              "baths": {
                "type": "number"
              },
              "price": {
                "type": "string",
                "description": "Formatted list price, e.g. '$625,000'."
              },
              "address": {
                "type": "string",
                "description": "The listing's full street address."
              },
              "hdpData": {
                "type": "object",
                "properties": {
                  "homeInfo": {
                    "type": "object",
                    "properties": {
                      "unit": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Unit/apartment number when applicable."
                      },
                      "country": {
                        "type": "string"
                      },
                      "currency": {
                        "type": "string"
                      },
                      "homeType": {
                        "type": "string",
                        "description": "e.g. 'SINGLE_FAMILY'."
                      },
                      "homeStatus": {
                        "type": "string",
                        "description": "e.g. 'FOR_SALE'."
                      },
                      "lotAreaUnit": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "priceChange": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Most recent price change, negative for a reduction. Only present on some listings."
                      },
                      "daysOnZillow": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "lotAreaValue": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "rentZestimate": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Estimated monthly rent. Observed null on some listings."
                      },
                      "priceReduction": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Formatted price-change summary, e.g. '$64,000 (Aug 12)'."
                      },
                      "datePriceChanged": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Epoch milliseconds of the last price change."
                      },
                      "listing_sub_type": {
                        "type": "object",
                        "properties": {
                          "is_FSBA": {
                            "type": "boolean"
                          },
                          "is_newHome": {
                            "type": "boolean"
                          },
                          "is_openHouse": {
                            "type": "boolean"
                          },
                          "is_comingSoon": {
                            "type": "boolean"
                          }
                        },
                        "additionalProperties": true
                      },
                      "taxAssessedValue": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "isNonOwnerOccupied": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "newConstructionType": {
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "additionalProperties": true
                  }
                },
                "additionalProperties": true
              },
              "latLong": {
                "type": "object",
                "properties": {
                  "latitude": {
                    "type": "number"
                  },
                  "longitude": {
                    "type": "number"
                  }
                },
                "additionalProperties": true
              },
              "hasImage": {
                "type": "boolean"
              },
              "hasVideo": {
                "type": "boolean"
              },
              "zestimate": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Zillow's automated value estimate. Observed null on some listings."
              },
              "has3DModel": {
                "type": "boolean"
              },
              "statusText": {
                "type": "string",
                "description": "Human-readable listing status, e.g. 'Active'."
              },
              "addressCity": {
                "type": "string"
              },
              "info2String": {
                "type": "string",
                "description": "MLS attribution text required alongside the listing, e.g. the originating MLS."
              },
              "addressState": {
                "type": "string"
              },
              "hasOpenHouse": {
                "type": "boolean"
              },
              "addressStreet": {
                "type": "string"
              },
              "isZillowOwned": {
                "type": "boolean",
                "description": "True for a Zillow-owned (Zillow Offers) home."
              },
              "addressZipcode": {
                "type": "string"
              },
              "openHouseEndDate": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "unformattedPrice": {
                "type": "number",
                "description": "List price as a plain number."
              },
              "openHouseStartDate": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "ISO timestamp of the next scheduled open house. Null when hasOpenHouse is false."
              },
              "isUndisclosedAddress": {
                "type": "boolean",
                "description": "True when the seller has withheld the exact address from public display."
              },
              "openHouseDescription": {
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "additionalProperties": true
          },
          "description": "The page of for-sale listings for the requested location."
        },
        "totalPages": {
          "type": "number"
        },
        "currentPage": {
          "type": "number",
          "description": "The page number returned (1-based)."
        },
        "regionState": {
          "type": "object",
          "properties": {
            "regionInfo": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "regionId": {
                    "type": "number"
                  },
                  "regionName": {
                    "type": "string",
                    "description": "The resolved region's name, e.g. 'Seattle'."
                  },
                  "regionType": {
                    "type": "number"
                  },
                  "displayName": {
                    "type": "string",
                    "description": "The resolved region's human-readable label."
                  },
                  "isPointRegion": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              }
            },
            "regionBounds": {
              "type": "object",
              "properties": {
                "east": {
                  "type": "number"
                },
                "west": {
                  "type": "number"
                },
                "north": {
                  "type": "number"
                },
                "south": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "hideRegionBoundary": {
              "type": "boolean"
            }
          },
          "description": "The geographic region Zillow resolved the input location string to.",
          "additionalProperties": true
        },
        "resultsPerPage": {
          "type": "number"
        },
        "totalResultCount": {
          "type": "number",
          "description": "Total matching listings across all pages."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real searches observed."
    }
  },
  "description": "A page of Zillow's for-sale search results for the requested location, as returned at routing.responseResultPath ($.output). Only the list-view `data.listings` array is shaped; Zillow's separate map-pin result set is not included.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.06825
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 12, 2026