# Find Pet-Friendly Apartments for Rent

**Use case:** 

Scrape pet-friendly apartments on Apartments.com: rent, beds, baths, sqft, pet policy, fees and amenities by city. No login. Export to CSV.

## Input

```json
{
  "locations": [
    "Austin, TX"
  ],
  "propertyTypes": [
    "apartments"
  ],
  "maxResults": 100,
  "maxResultsPerSearch": 120,
  "includeListingDetails": true,
  "petFriendlyOnly": true,
  "enrichContactEmails": false,
  "maxPhotosPerListing": 25,
  "deduplicateListings": true,
  "monitorMode": false,
  "monitorStoreName": "apartments-monitor",
  "debugDump": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "propertyName": {
    "label": "Property"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "ST"
  },
  "rentMin": {
    "label": "Rent min"
  },
  "rentMax": {
    "label": "Rent max"
  },
  "bedText": {
    "label": "Beds"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "# Reviews"
  },
  "phone": {
    "label": "Phone"
  },
  "petFriendly": {
    "label": "Pets"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Apartments.com Scraper - Rentals, Prices & Leads](https://apify.com/scrapesage/apartments-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/apartments-com-scraper) to learn more, explore other use cases, and run it yourself.