# Zumper Scraper – Rental Listings, Prices & Agent Contacts

**Use case:** 

Scrape US Zumper rentals. Search by location or URL. Get 60+ fields: rent, beds/baths, sqft, amenities, agent info, ratings, availability & full-res photos.

## Input

```json
{
  "mode": "search",
  "locations": [
    "San Francisco, CA"
  ],
  "propertyCategory": "apartments",
  "sortBy": "default",
  "urls": [
    "https://www.zumper.com/apartments-for-rent/san-francisco-ca"
  ],
  "fetchDetails": true,
  "maxPages": 50,
  "maxListings": 20,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "buildingName": {
    "label": "Building",
    "format": "text"
  },
  "propertyCategory": {
    "label": "Category",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "ZIP",
    "format": "text"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "minPrice": {
    "label": "Min Rent",
    "format": "number"
  },
  "maxPrice": {
    "label": "Max Rent",
    "format": "number"
  },
  "minBedrooms": {
    "label": "Min Beds",
    "format": "number"
  },
  "maxBedrooms": {
    "label": "Max Beds",
    "format": "number"
  },
  "minBathrooms": {
    "label": "Min Baths",
    "format": "number"
  },
  "maxBathrooms": {
    "label": "Max Baths",
    "format": "number"
  },
  "minSquareFeet": {
    "label": "Min Sqft",
    "format": "number"
  },
  "maxSquareFeet": {
    "label": "Max Sqft",
    "format": "number"
  },
  "dateAvailable": {
    "label": "Available",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "externalRating": {
    "label": "Ext. Rating",
    "format": "number"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "primaryImage": {
    "label": "Photo",
    "format": "image"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Zumper – Rental Listings, Prices & Agent Contacts](https://apify.com/abotapi/zumper-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/zumper-scraper) to learn more, explore other use cases, and run it yourself.