Skip to Content

PadMapper Data Parser & API

PadMapper is a map-based rental aggregator for the US and Canada — owned by Zumper — and PropAPIS extracts its aggregated rents, amenities, and availability through a single REST API. Access map-first long-term rental listings drawn from across multiple sources without building or maintaining a scraper.

PadMapper is owned by Zumper, so PropAPIS coverage of the Zumper stack reaches a shared rental inventory across both portals.

CountryUnited States
TypeAggregator
OwnerZumper
Listing typesrental
Monthly visits~low-millions / mo
Active listings~aggregated rentals
API accessNo public API (parse-only)
Parse priority★★☆☆☆
Official sitewww.padmapper.com

Platform Overview

PadMapper is a map-based rental aggregator covering the US and Canada, owned by Zumper, drawing low-millions of monthly visits (SimilarWeb — padmapper.com ). It aggregates rental listings from multiple sources onto a single map interface, sharing inventory with parent Zumper.

Market Coverage

Geographic Coverage:

  • US and Canada, map-first across major metros
  • Apartments, houses, condos and rooms for rent

Property Types:

  • Apartment communities and managed buildings
  • Single-family rentals and condos
  • Rooms and shared housing

Data Availability

PadMapper exposes aggregated rental fields — rent, beds, baths, sqft, amenities, fees, pet policy, and availability — drawn from across its source network and shared with Zumper.

Data Fields Available

PropAPIS extracts the full rental field set from each PadMapper 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

  • 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 PadMapper rental data through search and detail endpoints under api.platforms.padmapper. Use search_listings to query by location and rental criteria, and get_listing for the full unit-level record.

Quick Start

Extract PadMapper 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.padmapper.search_listings( location='Toronto, ON', min_beds=1, max_rent=2600, ) 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.padmapper.searchListings({ location: 'Toronto, ON', minBeds: 1, maxRent: 2600, }); for (const listing of listings.slice(0, 5)) { console.log(`${listing.address} — $${listing.rent.toLocaleString()}/mo`); }
curl "https://api.propapis.com/v1/platforms/padmapper/listings" \ -H "Authorization: Bearer your_api_key" \ -G \ --data-urlencode "location=Toronto, ON" \ --data-urlencode "min_beds=1" \ --data-urlencode "max_rent=2600"

Frequently asked questions