# How to scrape Apartments.com without getting blocked

**Use case:** 

Export Apartments.com rental search results when bot protection blocks simple scrapers: paste the same search URL from your browser (city, beds, price, map area, sort). Residential proxy and unlock are handled by the actor on Apify — no login. Pre-filled Austin sample; swap startUrl for any results page. JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.apartments.com/austin-tx/",
  "maxItems": 10,
  "fetchFullDetails": false,
  "fetchListingMedia": false
}
```

## Output

```json
{
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "listingid": {
    "label": "Listingid",
    "format": "text"
  },
  "streetaddress": {
    "label": "Streetaddress",
    "format": "text"
  },
  "countrycode": {
    "label": "Countrycode",
    "format": "text"
  },
  "feedvendorid": {
    "label": "Feedvendorid",
    "format": "text"
  },
  "unitnumber": {
    "label": "Unitnumber",
    "format": "text"
  },
  "featuredunit": {
    "label": "Featuredunit",
    "format": "text"
  },
  "listingId": {
    "label": "Listing Id",
    "format": "text"
  },
  "streetAddress": {
    "label": "Street Address",
    "format": "text"
  },
  "countryCode": {
    "label": "Country Code",
    "format": "text"
  },
  "ck": {
    "label": "Ck",
    "format": "text"
  },
  "unitNumber": {
    "label": "Unit Number",
    "format": "text"
  },
  "featuredUnit": {
    "label": "Featured Unit",
    "format": "text"
  },
  "propertyName": {
    "label": "Property Name",
    "format": "text"
  },
  "propertyTitle": {
    "label": "Property Title",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "addressTitle": {
    "label": "Address Title",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "phoneRaw": {
    "label": "Phone Raw",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Apartments.com Scraper 🔥 $0.8/1K](https://apify.com/azzouzana/apartments-com-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/azzouzana/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/azzouzana/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`).
