# Trulia Los Angeles Homes Scraper

**Use case:** 

Scrape Trulia homes for sale in Los Angeles. Export price, beds, baths, address and property details for real estate analysis.

## Input

```json
{
  "maxItems": 25,
  "location": "Los Angeles, CA",
  "listingType": "FOR_SALE",
  "petFriendly": false,
  "parkingAvailable": false,
  "laundryInUnit": false,
  "airConditioning": false,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "imageUrls": {
    "label": "Images",
    "format": "image"
  },
  "id": {
    "label": "Id",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceFrequency": {
    "label": "Price Frequency",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "Zip",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "squareFeet": {
    "label": "Square Feet",
    "format": "number"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "text"
  },
  "listingStatus": {
    "label": "Listing Status",
    "format": "text"
  },
  "availableDate": {
    "label": "Available Date",
    "format": "date"
  },
  "daysOnMarket": {
    "label": "Days On Market",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "number"
  },
  "floorsInBuilding": {
    "label": "Floors In Building",
    "format": "number"
  },
  "amenities": {
    "label": "Amenities",
    "format": "array"
  },
  "petPolicy": {
    "label": "Pet Policy",
    "format": "text"
  },
  "parkingType": {
    "label": "Parking Type",
    "format": "text"
  },
  "laundryType": {
    "label": "Laundry Type",
    "format": "text"
  },
  "heatingType": {
    "label": "Heating Type",
    "format": "text"
  },
  "coolingType": {
    "label": "Cooling Type",
    "format": "text"
  },
  "depositAmount": {
    "label": "Deposit Amount",
    "format": "number"
  },
  "monthlyHoaFee": {
    "label": "Monthly Hoa Fee",
    "format": "number"
  },
  "leaseTerm": {
    "label": "Lease Term",
    "format": "text"
  },
  "neighborhoodName": {
    "label": "Neighborhood Name",
    "format": "text"
  },
  "walkScore": {
    "label": "Walk Score",
    "format": "number"
  },
  "transitScore": {
    "label": "Transit Score",
    "format": "number"
  },
  "listingAgent": {
    "label": "Listing Agent",
    "format": "text"
  },
  "listingAgentPhone": {
    "label": "Listing Agent Phone",
    "format": "text"
  },
  "brokerName": {
    "label": "Broker Name",
    "format": "text"
  },
  "openHouseSchedule": {
    "label": "Open House Schedule",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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