# Apartment Rentals in Austin, TX

**Use case:** 

Collects apartment listings in Austin, TX from Apartments.com with interior amenity details attached, prefilled for 15 properties. Swap the search location for another Texas city, or enable includeVisuals for photo galleries.

## Input

```json
{
  "search": "Austin, TX",
  "startUrls": [
    "https://www.apartments.com/sobe-apartment-rentals-miami-beach-fl/26xc7jb/"
  ],
  "maxItems": 15,
  "includeReviews": true,
  "includeVisuals": true,
  "includeInteriorAmenities": true,
  "includeWalkScore": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "UNBLOCKER"
    ]
  }
}
```

## Output

```json
{
  "propertyName": {
    "label": "Property",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "rent": {
    "label": "Rent",
    "format": "object"
  },
  "beds": {
    "label": "Beds",
    "format": "text"
  },
  "baths": {
    "label": "Baths",
    "format": "text"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "lastUpdated": {
    "label": "Last Updated",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Apartments.com Scraper & API | Rentals & Property Data](https://apify.com/parsebird/apartments-com-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/apartments-com-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/parsebird/apartments-com-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`).
