# Zumper Property Scraper 🏠 (`shahidirfan/zumper-property-scraper`) Actor

Extract live rental listings from Zumper nationwide. Get prices, locations, apartment details, landlord contacts & photos. Perfect for rental market analysis, investment due diligence, price benchmarking, vacancy tracking & real estate intelligence. Fully structured output.

- **URL**: https://apify.com/shahidirfan/zumper-property-scraper.md
- **Developed by:** [Shahid Irfan](https://apify.com/shahidirfan) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Zumper Property Scraper

Extract comprehensive apartment and rental property listings from Zumper.com with ease. Collect detailed property data including pricing, bedrooms, bathrooms, amenities, ratings, image galleries, and neighborhood information across any US or Canadian city. Perfect for real estate research, rental market analysis, and property data collection.

### Features

- **City-wide extraction** — Scrape all apartment listings from any Zumper city or neighborhood page
- **Automatic pagination** — Handles multi-page results automatically to collect your desired number of listings
- **Rich property data** — Extracts pricing, bedrooms, bathrooms, square footage, amenities, ratings, and more
- **Faster collection** — Completes city and neighborhood runs much more quickly for the same result counts
- **Image galleries** — Collects full-size property image URLs for every listing
- **Amenity mapping** — Converts numeric amenity codes into readable names for easy analysis
- **Duplicate protection** — Skips repeated listings across featured and paginated results
- **No null fields** — Clean dataset with empty fields automatically removed
- **Proxy support** — Built-in proxy configuration for reliable data collection at scale

### Use Cases

#### Rental Market Research
Analyze rental prices, availability, and trends across cities and neighborhoods. Compare average rents, identify affordable areas, and track market shifts over time for investment decisions.

#### Property Investment Analysis
Evaluate rental properties by comparing prices, amenities, and ratings across buildings. Identify high-rated buildings with competitive pricing for potential investment opportunities.

#### Relocation Planning
Gather comprehensive rental options before moving to a new city. Filter by budget, bedroom count, and preferred neighborhoods to shortlist apartments quickly.

#### Competitive Intelligence
Monitor competitor pricing and amenity offerings in your market area. Stay ahead by tracking new listings, price changes, and occupancy trends.

#### Real Estate Data Enrichment
Build comprehensive property databases for business intelligence, lead generation, or data-driven applications. Combine with other datasets for deeper market insights.

---

### Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `url` | String | No | — | Full Zumper URL to scrape, e.g. `https://www.zumper.com/apartments-for-rent/vancouver-bc`. |
| `results_wanted` | Integer | No | `100` | Maximum number of property listings to collect. |
| `max_pages` | Integer | No | `20` | Maximum number of search result pages to visit. |
| `proxyConfiguration` | Object | No | Apify Proxy (Residential) | Proxy settings for reliable access. |

---

### Output Data

Each item in the dataset contains:

| Field | Type | Description |
|-------|------|-------------|
| `title` | String | Listing title or floor plan name |
| `building_name` | String | Name of the building or property |
| `address` | String | Street address of the property |
| `neighborhood` | String | Neighborhood name |
| `city` | String | City name |
| `state` | String | State or province abbreviation |
| `zipcode` | String | Postal or ZIP code |
| `min_price` | Number | Minimum monthly rent |
| `max_price` | Number | Maximum monthly rent |
| `min_bedrooms` | Number | Minimum bedrooms available |
| `max_bedrooms` | Number | Maximum bedrooms available |
| `min_bathrooms` | Number | Minimum bathrooms available |
| `max_bathrooms` | Number | Maximum bathrooms available |
| `sqft` | String | Square footage range (e.g. `806-1224`) |
| `property_type` | String | Type of property (e.g. Apartment, House, Condo) |
| `available_date` | String | Date the unit becomes available |
| `rating` | Number | Property rating score |
| `amenities` | Array | List of unit amenities (e.g. Cats OK, In-Unit Laundry) |
| `building_amenities` | Array | List of building amenities (e.g. Fitness Center, Pool) |
| `latitude` | Number | Latitude coordinate |
| `longitude` | Number | Longitude coordinate |
| `url` | String | Full URL to the listing on Zumper |
| `image_gallery` | Array | List of full-size property image URLs |

---

### Usage Examples

#### Scrape a City URL

Extract apartments for rent from Vancouver, BC:

```json
{
    "url": "https://www.zumper.com/apartments-for-rent/vancouver-bc",
    "results_wanted": 100,
    "max_pages": 10
}
````

#### Scrape a Specific Neighborhood

Extract listings from a neighborhood page:

```json
{
    "url": "https://www.zumper.com/apartments-for-rent/west-end-vancouver-bc",
    "results_wanted": 25
}
```

#### Large-Scale Collection

Collect all available listings from New York with proxy:

```json
{
    "url": "https://www.zumper.com/apartments-for-rent/new-york-ny",
    "results_wanted": 500,
    "max_pages": 50,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": ["RESIDENTIAL"]
    }
}
```

***

### Sample Output

```json
{
    "title": "1 BR Garden",
    "building_name": "Langara Gardens",
    "address": "621 West 57th Avenue 101",
    "neighborhood": "Oakridge",
    "city": "Vancouver",
    "state": "BC",
    "zipcode": "V6P 2B1",
    "min_price": 2190,
    "max_price": 3200,
    "min_bedrooms": 1,
    "max_bedrooms": 2,
    "min_bathrooms": 1,
    "max_bathrooms": 2,
    "sqft": "806-1224",
    "property_type": "Apartment",
    "rating": 9.7,
    "amenities": ["Cats OK", "In-Unit Laundry", "Air Conditioning", "Hardwood Floors", "Carpet"],
    "building_amenities": ["Pool", "Fitness Center", "Cats OK", "On-Site Laundry", "Garage"],
    "latitude": 49.2191,
    "longitude": -123.1198,
    "url": "https://www.zumper.com/apartment-buildings/p1367951/langara-gardens-oakridge-vancouver-bc",
    "image_gallery": [
        "https://img.zumpercdn.com/900775369/1280x960",
        "https://img.zumpercdn.com/884389517/1280x960",
        "https://img.zumpercdn.com/884389518/1280x960"
    ]
}
```

***

### Tips for Best Results

#### Choose Valid URLs

- Use Zumper city or neighborhood URLs like `https://www.zumper.com/apartments-for-rent/city-state`
- Verify the URL loads correctly in a browser before running the actor

#### Optimize Collection Size

- Start with 20-50 results for testing before scaling up
- Each page returns approximately 25-28 listings
- Set `max_pages` to control how deep the scraper goes

#### Proxy Configuration

- Residential proxies are recommended for large runs
- Apify Proxy with `RESIDENTIAL` group works well for Zumper
- For small test runs, proxy is not required

#### Supported URL Patterns

- City pages: `/apartments-for-rent/vancouver-bc`
- Neighborhood pages: `/apartments-for-rent/west-end-vancouver-bc`
- State pages: `/apartments-for-rent/california`
- Any valid Zumper search URL

***

### Integrations

Connect your Zumper property data with:

- **Google Sheets** — Export listings for price comparison and analysis
- **Airtable** — Build a searchable property database
- **Slack** — Get notified when new listings match your criteria
- **Webhooks** — Send data to custom endpoints in real-time
- **Make** — Automate workflows with property data triggers
- **Zapier** — Connect to hundreds of apps and services

#### Export Formats

- **JSON** — For developers and API integrations
- **CSV** — For spreadsheet analysis in Excel or Google Sheets
- **Excel** — For business reporting and presentations
- **XML** — For system integrations

***

### Frequently Asked Questions

#### How many listings can I collect?

You can collect all available listings from any Zumper search. Some cities have thousands of listings. Use `results_wanted` and `max_pages` to control the output size.

#### Does it work for both US and Canadian cities?

Yes, the scraper works with any Zumper city or neighborhood page in the United States or Canada.

#### Can I scrape a specific building?

Building detail pages (`/apartment-buildings/...`) are also supported. The scraper extracts available floor plans from the building page.

#### What if a field is missing?

Fields that are not available for a particular listing are automatically excluded from the output, keeping your dataset clean.

#### How often should I run this actor?

For market monitoring, running daily or weekly provides good coverage of new listings and price changes. Use Apify scheduling for automated runs.

#### Can I filter by price or bedrooms?

Use Zumper's URL filters. For example, `https://www.zumper.com/apartments-for-rent/vancouver-bc?price_max=2500&beds_min=2` to filter by max price and minimum bedrooms.

***

### Support

For issues or feature requests, contact support through the Apify Console.

#### Resources

- [Apify Documentation](https://docs.apify.com/)
- [API Reference](https://docs.apify.com/api/v2)
- [Scheduling Runs](https://docs.apify.com/schedules)

***

### Legal Notice

This actor is designed for legitimate data collection purposes. Users are responsible for ensuring compliance with Zumper's terms of service and applicable laws. Use data responsibly and respect rate limits.

# Actor input Schema

## `url` (type: `string`):

Full Zumper URL to scrape, e.g. https://www.zumper.com/apartments-for-rent/vancouver-bc.

## `results_wanted` (type: `integer`):

Maximum number of property listings to collect.

## `max_pages` (type: `integer`):

Maximum number of search result pages to visit.

## `proxyConfiguration` (type: `object`):

Apify Proxy settings. Residential proxies recommended for Zumper.

## Actor input object example

```json
{
  "url": "https://www.zumper.com/apartments-for-rent/vancouver-bc",
  "results_wanted": 20,
  "max_pages": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "url": "https://www.zumper.com/apartments-for-rent/vancouver-bc",
    "results_wanted": 20,
    "max_pages": 2
};

// Run the Actor and wait for it to finish
const run = await client.actor("shahidirfan/zumper-property-scraper").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 = {
    "url": "https://www.zumper.com/apartments-for-rent/vancouver-bc",
    "results_wanted": 20,
    "max_pages": 2,
}

# Run the Actor and wait for it to finish
run = client.actor("shahidirfan/zumper-property-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "url": "https://www.zumper.com/apartments-for-rent/vancouver-bc",
  "results_wanted": 20,
  "max_pages": 2
}' |
apify call shahidirfan/zumper-property-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=shahidirfan/zumper-property-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Zumper Property Scraper 🏠",
        "description": "Extract live rental listings from Zumper nationwide. Get prices, locations, apartment details, landlord contacts & photos. Perfect for rental market analysis, investment due diligence, price benchmarking, vacancy tracking & real estate intelligence. Fully structured output.",
        "version": "0.0",
        "x-build-id": "KtV5Au8cCYUyvMk5H"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/shahidirfan~zumper-property-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-shahidirfan-zumper-property-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/shahidirfan~zumper-property-scraper/runs": {
            "post": {
                "operationId": "runs-sync-shahidirfan-zumper-property-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/shahidirfan~zumper-property-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-shahidirfan-zumper-property-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",
                "properties": {
                    "url": {
                        "title": "Zumper URL",
                        "type": "string",
                        "description": "Full Zumper URL to scrape, e.g. https://www.zumper.com/apartments-for-rent/vancouver-bc."
                    },
                    "results_wanted": {
                        "title": "Maximum results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of property listings to collect.",
                        "default": 20
                    },
                    "max_pages": {
                        "title": "Maximum pages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of search result pages to visit.",
                        "default": 20
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy settings. Residential proxies recommended for Zumper.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
