# Zillow Search Scraper (via Apify)

> Zillow Search Scraper (via Apify) is a paid API for AI agents from apify-4kne39v7m-merit-systems.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Triggers the Apify maxcopell/zillow-scraper actor to scrape real estate listings from Zillow based on search parameters.

## Facts

- Endpoint: POST https://apify-4kne39v7m-merit-systems.vercel.app/api/actors/maxcopell/zillow-scraper/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apify-4kne39v7m-merit-systems-vercel-app-181b5ea4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QAEB90Vi2fl2xITqnqelx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apify-4kne39v7m-merit-systems-vercel-app-181b5ea4 -d '<json body>'
```

Example prompt: Scrape Zillow for all homes for sale in Austin, TX under $500,000 with at least 3 bedrooms — pull the listing prices, addresses, and square footage for up to 50 results.

## When to prefer this

Use this endpoint when you need to programmatically extract real estate listing data from Zillow at scale — especially for market research, price analysis, investment screening, or building property databases — and you want a managed, pay-per-use scraping solution without managing your own browser infrastructure.

## Known failure modes

- Invalid or malformed Zillow search URL returns actor error
- Zillow rate-limiting or anti-bot detection causes partial or empty results
- Actor run timeout if too many listings requested
- Invalid API credentials or payment failure returns 402/401 error
- Apify platform downtime causes 503 response

## How this service works

Start the Zillow Search Scraper Apify actor (maxcopell/zillow-scraper).

## Output

Returns an Apify actor run object with a run ID and dataset reference; the scraped Zillow property listings (prices, addresses, beds/baths, sq ft, listing URLs) can be retrieved from the resulting Apify dataset once the run completes.

## Example request

```json
{
 "input": {
  "bbox": {
   "east": -97.7245,
   "west": -97.7431,
   "north": 30.2855,
   "south": 30.2672
  },
  "maxItems": 10,
  "listingType": "for_sale",
  "extractionMethod": "MAP_MARKERS"
 },
 "options": {
  "maxItems": 10
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "input": {
       "type": "object",
       "required": [
        "listingType",
        "extractionMethod",
        "sort"
       ],
       "properties": {
        "bbox": {
         "type": "object",
         "required": [
          "west",
          "east",
          "south",
          "north"
         ],
         "properties": {
          "east": {
           "type": "number",
           "maximum": 180,
           "minimum": -180
          },
          "west": {
           "type": "number",
           "maximum": 180,
           "minimum": -180
          },
          "north": {
           "type": "number",
           "maximum": 90,
           "minimum": -90
          },
          "south": {
           "type": "number",
           "maximum": 90,
           "minimum": -90
          }
         },
         "description": "Map bounding box. Server builds the searchQueryState URL.",
         "additionalProperties": false
        },
        "sort": {
         "type": "string",
         "default": "globalrelevanceex",
         "minLength": 1,
         "description": "filterState.sort.value (e.g. globalrelevanceex, days, priorityscore)."
        },
        "maxItems": {
         "type": "integer",
         "maximum": 100000,
         "minimum": 1,
         "description": "Lifted into options.maxItems."
        },
        "searchUrls": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "url"
          ],
          "properties": {
           "url": {
            "type": "string",
            "format": "uri"
           }
          },
          "additionalProperties": false
         },
         "description": "Native Apify input. If provided, takes precedence over bbox/listingType. URLs MUST contain a `?searchQueryState=...` query param."
        },
        "listingType": {
         "enum": [
          "for_sale",
          "for_rent",
          "sold"
         ],
         "type": "string",
         "default": "for_sale",
         "description": "Listing category to filter for."
        },
        "extraFilterState": {
         "ty
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apify-4kne39v7m-merit-systems-vercel-app-181b5ea4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apify-4kne39v7m-merit-systems.vercel.app](https://www.zero.xyz/host/apify-4kne39v7m-merit-systems.vercel.app/llms.txt)
