# Hotpads Rental Listings Data Extractor

**Use case:** 

Extract detailed rental listings from HotPads, including prices, amenities, and photos for apartments, houses, and condos in San Francisco.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://hotpads.com/san-francisco-ca/apartments-for-rent?orderBy=score"
    }
  ],
  "maxItems": 50,
  "maxPages": 1,
  "includeDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "display_name": {
    "label": "Name",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "lease_terms": {
    "label": "Lease Terms",
    "format": "text"
  },
  "fees_and_deposits": {
    "label": "Fees & Deposits",
    "format": "array"
  },
  "special_offers": {
    "label": "Special Offers",
    "format": "text"
  },
  "rental_application_status": {
    "label": "Application",
    "format": "text"
  },
  "total_units_in_building": {
    "label": "Total Units",
    "format": "number"
  },
  "cat_allowed": {
    "label": "Cats OK",
    "format": "boolean"
  },
  "dog_allowed": {
    "label": "Dogs OK",
    "format": "boolean"
  },
  "cat_deposit": {
    "label": "Cat Deposit ($)",
    "format": "number"
  },
  "dog_deposit": {
    "label": "Dog Deposit ($)",
    "format": "number"
  },
  "hvac": {
    "label": "HVAC",
    "format": "text"
  },
  "gym": {
    "label": "Gym",
    "format": "boolean"
  },
  "pool": {
    "label": "Pool",
    "format": "boolean"
  },
  "security": {
    "label": "Security",
    "format": "text"
  },
  "dishwasher": {
    "label": "Dishwasher",
    "format": "boolean"
  },
  "has_3d_tour": {
    "label": "3D Tour",
    "format": "boolean"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "units": {
    "label": "Units",
    "format": "array"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "listed_by_name": {
    "label": "Listed By",
    "format": "text"
  },
  "is_broker_listing": {
    "label": "Broker",
    "format": "boolean"
  },
  "posted_ago": {
    "label": "Posted",
    "format": "text"
  },
  "updated_ago": {
    "label": "Updated",
    "format": "text"
  },
  "updated_date": {
    "label": "Last Updated",
    "format": "date"
  },
  "amenities_list": {
    "label": "Building Amenities",
    "format": "array"
  },
  "unit_amenities": {
    "label": "Unit Amenities",
    "format": "array"
  },
  "cat_monthly_fee": {
    "label": "Cat Monthly Fee",
    "format": "text"
  },
  "cat_max_allowed": {
    "label": "Cat Max",
    "format": "text"
  },
  "cat_restrictions": {
    "label": "Cat Rules",
    "format": "text"
  },
  "dog_monthly_fee": {
    "label": "Dog Monthly Fee",
    "format": "text"
  },
  "dog_max_allowed": {
    "label": "Dog Max",
    "format": "text"
  },
  "dog_restrictions": {
    "label": "Dog Rules",
    "format": "text"
  },
  "office_hours": {
    "label": "Office Hours",
    "format": "text"
  },
  "views_count": {
    "label": "Views",
    "format": "number"
  },
  "favorites_count": {
    "label": "Favorites",
    "format": "number"
  },
  "inquiries_count": {
    "label": "Inquiries",
    "format": "number"
  },
  "student_housing": {
    "label": "Student Housing",
    "format": "boolean"
  },
  "senior_housing": {
    "label": "Senior Housing",
    "format": "boolean"
  },
  "military_housing": {
    "label": "Military Housing",
    "format": "boolean"
  },
  "furnished": {
    "label": "Furnished",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Hotpads Scraper](https://apify.com/tangerine_loom/hotpads-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tangerine_loom/hotpads-scraper) to learn more, explore other use cases, and run it yourself.