# Analyze NYC Luxury Apartment Sales Market Trends

**Use case:** 

Scrape detailed information on high-end apartment sales across Manhattan and Brooklyn to identify emerging market trends. This data is crucial for real estate i

## Input

```json
{
  "startUrls": [
    {
      "url": "https://streeteasy.com/for-sale/manhattan/price:-1000000;beds:3;baths:2"
    },
    {
      "url": "https://streeteasy.com/for-sale/brooklyn/price:-1000000;beds:3;baths:2"
    }
  ],
  "maxResults": 200,
  "detailedMode": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "integer"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "squareFeet": {
    "label": "Sq Ft",
    "format": "integer"
  },
  "propertyType": {
    "label": "Type",
    "format": "string"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "string"
  },
  "listingType": {
    "label": "Sale/Rental",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [StreetEasy Scraper](https://apify.com/crawlerbros/streeteasy-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/streeteasy-scraper) to learn more, explore other use cases, and run it yourself.