Zumper Data Parser & API
Zumper is a major US and Canada rental portal — listing millions of long- and short-term rentals — and PropAPIS extracts its rents, amenities, and availability through a single REST API. Access apartment and house rental listings across North America without building or maintaining a scraper.
Zumper also owns PadMapper, so PropAPIS coverage of the Zumper stack reaches a shared rental inventory across both portals.
| Country | United States |
|---|---|
| Type | Portal |
| Owner | Zumper |
| Listing types | rental |
| Monthly visits | ~several M / mo |
| Active listings | ~millions of rentals |
| API access | Partial / limited API |
| Parse priority | ★★★☆☆ |
| Official site | www.zumper.com |
Platform Overview
Zumper is a US/Canada rental marketplace covering both long-term and short-term rentals, drawing several million monthly visits and listing millions of rentals (SimilarWeb — zumper.com ). Zumper offers a partial API for property managers to post inventory, but no open public listings API for consumers.
Market Coverage
Geographic Coverage:
- US and Canada across major metros
- Apartments, houses, condos and rooms for rent
Property Types:
- Apartment communities and managed buildings
- Single-family rentals and condos
- Rooms and short-term furnished rentals
Data Availability
Zumper exposes standard rental fields — rent, beds, baths, sqft, amenities, fees, pet policy, and availability — across both its long-term and short-term inventory and its PadMapper aggregator.
Data Fields Available
PropAPIS extracts the full rental field set from each Zumper listing:
Listing Basics
- Address: Full property address (real-time)
- Rent: Monthly asking rent per unit (real-time)
- Bedrooms: Number of bedrooms (real-time)
- Bathrooms: Number of bathrooms (real-time)
- Square Footage: Unit interior area (real-time)
Unit & Availability
- Floor Plan: Named floor plan / layout (static)
- Availability: Move-in / available date (real-time)
- Fees: Application, admin and deposit fees (real-time)
- Pet Policy: Pet rules and pet fees (static)
Amenities & Media
- Amenities: Building and unit amenities (static)
- Photos: Listing imagery
- Coordinates: Latitude and longitude
API Endpoints
PropAPIS exposes Zumper rental data through search and detail endpoints under api.platforms.zumper. Use search_listings to query by location and rental criteria, and get_listing for the full unit-level record.
Quick Start
Extract Zumper rentals with the PropAPIS SDKs or a direct REST call.
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search rental listings
listings = api.platforms.zumper.search_listings(
location='Seattle, WA',
min_beds=1,
max_rent=2800,
)
for listing in listings[:5]:
print(f"{listing.address} — ${listing.rent:,}/mo")
print(f" {listing.beds}bd / {listing.baths}ba")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
const listings = await api.platforms.zumper.searchListings({
location: 'Seattle, WA',
minBeds: 1,
maxRent: 2800,
});
for (const listing of listings.slice(0, 5)) {
console.log(`${listing.address} — $${listing.rent.toLocaleString()}/mo`);
}curl "https://api.propapis.com/v1/platforms/zumper/listings" \
-H "Authorization: Bearer your_api_key" \
-G \
--data-urlencode "location=Seattle, WA" \
--data-urlencode "min_beds=1" \
--data-urlencode "max_rent=2800"