# Trulia Property Listing Market Monitor

**Use case:** 

Monitor Trulia sale and sold property searches with stable IDs, numeric prices, timestamps, page provenance, brokers, and listing status.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.trulia.com/for_sale/Austin,TX/"
    },
    {
      "url": "https://www.trulia.com/sold/Austin,TX/"
    }
  ],
  "maxItems": 100,
  "maxPages": 3,
  "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.