# Track home listings and prices in Austin, TX

**Use case:** 

Pull current for-sale listings and prices for Austin, TX from Zillow — price, beds/baths, address, and agent contact.

## Input

```json
{
  "searchUrls": [],
  "q": "Austin, TX",
  "zpids": [],
  "north": "",
  "south": "",
  "east": "",
  "west": "",
  "includeDetail": true,
  "maxItems": 100,
  "listingType": "fsba,fsbo,newConstruction,comingSoon,auction",
  "homeTypes": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "streetAddress": {
    "label": "Street address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "ZIP",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "pricePerSquareFoot": {
    "label": "Price / sqft",
    "format": "number"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "Living area (sqft)",
    "format": "number"
  },
  "lotSize": {
    "label": "Lot size",
    "format": "number"
  },
  "lotSizeUnit": {
    "label": "Lot size unit",
    "format": "text"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "listingStatus": {
    "label": "Listing status",
    "format": "text"
  },
  "marketingStatus": {
    "label": "Marketing status",
    "format": "text"
  },
  "daysOnZillow": {
    "label": "Days on Zillow",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "brokerName": {
    "label": "Broker",
    "format": "text"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "agentBusinessName": {
    "label": "Agent business",
    "format": "text"
  },
  "agentPhone": {
    "label": "Agent phone",
    "format": "text"
  },
  "taxAssessedValue": {
    "label": "Tax assessed value",
    "format": "number"
  },
  "taxAssessmentYear": {
    "label": "Tax year",
    "format": "text"
  },
  "photoCount": {
    "label": "Photo count",
    "format": "number"
  },
  "photos": {
    "label": "Photos (full-res)",
    "format": "array"
  },
  "hasVideos": {
    "label": "Has videos",
    "format": "text"
  },
  "has3DTour": {
    "label": "Has 3D tour",
    "format": "text"
  },
  "resoFacts": {
    "label": "Facts & features",
    "format": "object"
  },
  "homeStatusText": {
    "label": "Status (display)",
    "format": "text"
  },
  "trueStatus": {
    "label": "MLS status",
    "format": "text"
  },
  "contingentListingType": {
    "label": "Contingent type",
    "format": "text"
  },
  "newConstructionType": {
    "label": "New construction type",
    "format": "text"
  },
  "isZillowOwned": {
    "label": "Zillow owned",
    "format": "boolean"
  },
  "timeZone": {
    "label": "Time zone",
    "format": "text"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "rentZestimate": {
    "label": "Rent Zestimate",
    "format": "number"
  },
  "priceChange": {
    "label": "Price change",
    "format": "text"
  },
  "virtualTourUrl": {
    "label": "Virtual tour",
    "format": "link"
  },
  "floorPlanUrl": {
    "label": "Floor plan",
    "format": "link"
  },
  "isFsba": {
    "label": "For sale by agent",
    "format": "boolean"
  },
  "isFsbo": {
    "label": "For sale by owner",
    "format": "boolean"
  },
  "isPending": {
    "label": "Pending",
    "format": "boolean"
  },
  "isNewHome": {
    "label": "New home",
    "format": "boolean"
  },
  "isForeclosure": {
    "label": "Foreclosure",
    "format": "boolean"
  },
  "isComingSoon": {
    "label": "Coming soon",
    "format": "boolean"
  },
  "isBankOwned": {
    "label": "Bank owned",
    "format": "boolean"
  },
  "isForAuction": {
    "label": "For auction",
    "format": "boolean"
  },
  "isOpenHouse": {
    "label": "Open house",
    "format": "boolean"
  },
  "raw": {
    "label": "Raw API record",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow API Scraper](https://apify.com/rl1987/zillow-api-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rl1987/zillow-api-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/rl1987/zillow-api-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`).
