# Austin TX Real Estate Listings & Agent Contacts

**Use case:** 

Access comprehensive data on homes for sale and rent in Austin, TX, along with sold listings. This task pulls details such as price, bedrooms, and agent contact information from Realtor.com, providing a clear view of the local real estate market.

## Input

```json
{
  "locations": [
    "Austin, TX"
  ],
  "startUrls": [
    "https://www.realtor.com/realestateandhomes-search/San-Francisco_CA"
  ],
  "listingType": "for_sale",
  "maxItems": 200,
  "sortBy": "list_date",
  "sortDirection": "desc",
  "foreclosure": false,
  "excludePending": false,
  "enrichDetails": true
}
```

## Output

```json
{
  "status": {
    "label": "Status"
  },
  "listPrice": {
    "label": "List price"
  },
  "beds": {
    "label": "Beds"
  },
  "baths": {
    "label": "Baths"
  },
  "sqft": {
    "label": "Sqft"
  },
  "formattedAddress": {
    "label": "Formatted address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zipCode": {
    "label": "Zip code"
  },
  "agentName": {
    "label": "Agent name"
  },
  "agentEmail": {
    "label": "Agent email"
  },
  "agentPhone": {
    "label": "Agent phone"
  },
  "brokerName": {
    "label": "Broker name"
  },
  "propertyUrl": {
    "label": "Property url"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Realtor.com Property Listings & Agent Contacts](https://apify.com/devil_port369-owner/usa-real-estate-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devil_port369-owner/usa-real-estate-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/devil_port369-owner/usa-real-estate-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
