# Find Trulia Rental Apartments

**Use case:** 

Find Trulia Rental Apartments by scraping public listings, prices, bedrooms, and locations for rental research.

## Input

```json
{
  "maxItems": 100,
  "location": "Austin TX",
  "operation": "rent",
  "sortBy": "best",
  "minPrice": 0,
  "maxPrice": 3000,
  "minBeds": 1,
  "maxBeds": 0,
  "minBaths": 0,
  "maxBaths": 0,
  "minSqft": 0,
  "maxSqft": 0,
  "minLotSize": 0,
  "maxLotSize": 0,
  "minHoaFee": 0,
  "maxHoaFee": 0,
  "minPricePerSqft": 0,
  "maxPricePerSqft": 0,
  "minYearBuilt": 0,
  "maxYearBuilt": 0,
  "soldWithin": 0,
  "plus55Exclude": false,
  "airConditioning": false,
  "newListingDaysAgo": 0,
  "newListingMinDate": "",
  "newListingMaxDate": "",
  "newListingTimestamp": 0,
  "openHomesMinDate": "",
  "openHomesMaxDate": "",
  "openHomesTimestamp": 0,
  "recentlyReducedDaysAgo": 0,
  "recentlyReducedMinDate": "",
  "recentlyReducedMaxDate": "",
  "recentlyReducedTimestamp": 0,
  "transitSystem": "",
  "transitLine": "",
  "transitStation": "",
  "includeOffMarket": true,
  "includeBuilderCommunities": true,
  "hasVirtualTour": false,
  "includeNearBy": true,
  "isAlternateListingSource": false
}
```

## Output

```json
{
  "metadata.typedHomeId": {
    "label": "ID",
    "format": "text"
  },
  "metadata.unifiedListingType": {
    "label": "Type",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "location.streetAddress": {
    "label": "Street address"
  },
  "location.city": {
    "label": "City",
    "format": "text"
  },
  "location.stateCode": {
    "label": "State",
    "format": "text"
  },
  "location.zipCode": {
    "label": "ZIP",
    "format": "text"
  },
  "location.formattedLocation": {
    "label": "Address",
    "format": "text"
  },
  "location.coordinates": {
    "label": "Coordinates"
  },
  "genericPrice.formattedPrice": {
    "label": "Price",
    "format": "text"
  },
  "typedPrice.formattedPrice": {
    "label": "Alt Price",
    "format": "text"
  },
  "shortPrice.formattedPrice": {
    "label": "Short Price",
    "format": "text"
  },
  "bedrooms.formattedValue": {
    "label": "Beds",
    "format": "text"
  },
  "bathrooms.formattedValue": {
    "label": "Baths",
    "format": "text"
  },
  "floorSpace.formattedDimension": {
    "label": "Sqft",
    "format": "text"
  },
  "currentStatus.isActiveForSale": {
    "label": "For Sale",
    "format": "boolean"
  },
  "currentStatus.isActiveForRent": {
    "label": "For Rent",
    "format": "boolean"
  },
  "currentStatus.isRecentlySold": {
    "label": "Sold",
    "format": "boolean"
  },
  "currentStatus.isForeclosure": {
    "label": "Foreclosure",
    "format": "boolean"
  },
  "currentStatus.isOffMarket": {
    "label": "Off Market",
    "format": "boolean"
  },
  "activeListing.dateListed": {
    "label": "Listed",
    "format": "text"
  },
  "lastSold.formattedSoldDate": {
    "label": "Last Sold",
    "format": "text"
  },
  "media.heroImage": {
    "label": "Hero Image",
    "format": "object"
  },
  "media.photos": {
    "label": "Photos",
    "format": "array"
  },
  "largeTags": {
    "label": "Tags",
    "format": "array"
  },
  "smallTags": {
    "label": "Small tags"
  },
  "tracking": {
    "label": "Tracking",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Trulia Scraper - US Real Estate ($0.9/1000)](https://apify.com/igolaizola/trulia-scraper-ppe) with a specific input configuration. Visit the [Actor detail page](https://apify.com/igolaizola/trulia-scraper-ppe) to learn more, explore other use cases, and run it yourself.