# Austin Trulia Homes for Sale Scraper

**Use case:** 

Scrape Austin Trulia home listings with prices, addresses, property features, coordinates, brokers, and photo URLs for market research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.trulia.com/for_sale/Austin,TX/"
    }
  ],
  "maxItems": 20,
  "maxPages": 2,
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "recordId": {
    "label": "Record ID"
  },
  "status": {
    "label": "Status"
  },
  "propertyType": {
    "label": "Property type"
  },
  "address": {
    "label": "Address"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "broker": {
    "label": "Broker"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  },
  "fetchedPage": {
    "label": "Page",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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