# Brooklyn NYC Apartments for Sale Data

**Use case:** 

Scrape real estate listings for sale in Brooklyn, NYC. Get detailed information like price, address, and property type in CSV or JSON format.

## Input

```json
{
  "metro": "austin-tx",
  "searchUrls": [
    "https://www.redfin.com/borough/20780/NY/Brooklyn"
  ],
  "locations": [
    "33139",
    "https://www.redfin.com/zipcode/60601"
  ],
  "listingType": "forSale",
  "propertyType": "all",
  "sortBy": "recommended",
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "Zip",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqFt": {
    "label": "Sq Ft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "daysOnMarket": {
    "label": "DOM",
    "format": "number"
  },
  "url": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Scraper - US Home Listings Data](https://apify.com/logiover/redfin-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/redfin-scraper) to learn more, explore other use cases, and run it yourself.