# Scrape apartments for rent in Washington, DC from Redfin

**Use case:** 

Get DC rental listings in one run. Rent ranges, unit counts, availability dates, and landlord phone numbers included.

## Input

```json
{
  "urls": [
    "https://www.redfin.com/zipcode/20001/rentals"
  ],
  "locations": [
    "20001",
    "Philadelphia",
    "New York"
  ],
  "sampleUrl": "https://www.redfin.com/city/15502/PA/Philadelphia/filter/min-beds=0,max-beds=4,guest-house,air-conditioning",
  "searchLimit": 100,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "propertyId": {
    "label": "ID",
    "format": "string"
  },
  "mainPhoto": {
    "label": "Photo",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "requiresAuth": {
    "label": "Auth Req.",
    "format": "boolean"
  },
  "rentPropertyName": {
    "label": "Property Name",
    "format": "string"
  },
  "buildingName": {
    "label": "Building",
    "format": "string"
  },
  "rentPriceMin": {
    "label": "Min Rent",
    "format": "number"
  },
  "rentPriceMax": {
    "label": "Max Rent",
    "format": "number"
  },
  "isTotalPrice": {
    "label": "Total Price",
    "format": "boolean"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "string"
  },
  "rentBedMin": {
    "label": "Beds (min)",
    "format": "integer"
  },
  "rentBedMax": {
    "label": "Beds (max)",
    "format": "integer"
  },
  "rentBathMin": {
    "label": "Baths (min)",
    "format": "number"
  },
  "rentBathMax": {
    "label": "Baths (max)",
    "format": "number"
  },
  "rentSqftMin": {
    "label": "Sq Ft (min)",
    "format": "integer"
  },
  "rentSqftMax": {
    "label": "Sq Ft (max)",
    "format": "integer"
  },
  "rentScore": {
    "label": "Score",
    "format": "number"
  },
  "numAvailableUnits": {
    "label": "Avail. Units",
    "format": "integer"
  },
  "dateAvailable": {
    "label": "Available",
    "format": "string"
  },
  "rentPhones": {
    "label": "Phones",
    "format": "array"
  },
  "feedSource": {
    "label": "Feed Source",
    "format": "string"
  },
  "externalUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "descriptionSnippet": {
    "label": "Description",
    "format": "string"
  },
  "lastUpdated": {
    "label": "Updated",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  },
  "photos": {
    "label": "All Photos",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Property Search Scraper](https://apify.com/mantisus/redfin-fast-scraper-per-results) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mantisus/redfin-fast-scraper-per-results) to learn more, explore other use cases, and run it yourself.