# Scrape Homes For Sale From Redfin

**Use case:** 

Redfin's search endpoint has no pages at all - page_number=2 returns the first page byte for byte, measured - so the number of homes asked for in one request is the only lever there is. Set it high and 5,876 Austin listings arrived in a single response, against the 350-row ceiling of Redfin's own CSV export.

## Input

```json
{
  "locations": [
    "https://www.redfin.com/city/30818/TX/Austin"
  ],
  "mode": "forSale",
  "maxItems": 1000,
  "maxHomesPerLocation": 3000,
  "includeDetails": false,
  "maxDetails": 50,
  "includeMarketStats": false,
  "verifyRegion": true,
  "minPrice": 0,
  "maxPrice": 0,
  "minBeds": 0,
  "maxBeds": 0,
  "minBaths": 0,
  "minSqft": 0,
  "maxSqft": 0,
  "minLotSqft": 0,
  "minYearBuilt": 0,
  "maxYearBuilt": 0,
  "propertyTypes": [],
  "maxDaysOnMarket": 0,
  "onlyOpenHouses": false,
  "onlyNewConstruction": false,
  "onlyWithPhotos": false,
  "addressContains": "",
  "descriptionContains": "",
  "labelContains": "",
  "minWalkScore": 0,
  "minTransitScore": 0,
  "minPermits": 0,
  "onlyChanged": false,
  "emitUnchanged": false,
  "compactOutput": false,
  "dropEmptyFields": false,
  "includeRawRecord": false,
  "concurrency": 4,
  "timeoutSeconds": 90,
  "inputDatasetId": "",
  "urlField": "url"
}
```

## Output

```json
{
  "address": {
    "label": "Full address",
    "format": "string"
  },
  "price": {
    "label": "Price, USD",
    "format": "integer"
  },
  "beds": {
    "label": "Bedrooms",
    "format": "integer"
  },
  "baths": {
    "label": "Bathrooms",
    "format": "integer"
  },
  "sqft": {
    "label": "Living area, sq ft",
    "format": "integer"
  },
  "price_per_sqft": {
    "label": "Price per sq ft",
    "format": "integer"
  },
  "property_type": {
    "label": "Property type",
    "format": "string"
  },
  "year_built": {
    "label": "Year built",
    "format": "integer"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "days_on_market": {
    "label": "Days on market",
    "format": "integer"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zip": {
    "label": "ZIP",
    "format": "string"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Scraper - MLS Property Listings, Rentals, Market Stats](https://apify.com/snow_leo_data/redfin-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/snow_leo_data/redfin-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/snow_leo_data/redfin-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`).
